/usr/lib/R/site-library/clusterGeneration/NEWS is in r-cran-clustergeneration 1.3.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | v1.3.2 >>>> Feb 14, 2015
#  (1) fixed a few bugs in function 'getSepProjData':
#    'u.cl <- unique(cl)' should be 
#    'u.cl <- sort(unique(cl)'
#    'yi <- y[cl == u.cl[i], , drop = FALSE]'
#    should be
#    'yi <- y[which(cl == u.cl[i]), , drop = FALSE]'
v1.3.1 >>>> Jan 7, 2013
#  (1) added a space between 'Weiliang Qiu' and 
#    '<stwxq@channing.harvard.edu>' in the 'Maintainer' slot
#   in the DESCRIPTION file
#   Thank Dr. Kurt Hornik for his kind help!
#
v1.3.0 >>>> Jan 6, 2013
# (1) rename 'log.txt' file to 'NEWS'. 
# Thanks for Mr. Suraj Gupta (<suraj@wingedfootcapital.com>) for this suggestion!
#
v1.2.9 >>>> April 2, 2012
#  (1) fixed a bug pointed by Dr. Anton Korobeynikov 
# <anton@korobeynikov.info>
# Dear Dr. Weiliang Qiu,
# 
# Recently we tried to used your package clusterGeneration but found
# that the behavior of genRandomClust() with clustszind == 3 is
# definitely wrong compared to the one documented.
# After looking into the implementation it became obvious that
# genMemSize() function does wrong things: it tries to sample from 1:G
# using provided clusterSizes as weights. Surely the output clusters
# have wrong sizes (not the ones specified).
# 
# The fix is pretty simple: change the code for clustszind == 3 to
# something like this:
# 
# mem <- sample(unlist(lapply(1:G, function(x) rep.int(x, times =
# clustSizes[x]))))
# N <- sum(clustSizes)
# 
# Or, maybe if you want to keep the current behavior it'd be better to
# introduce new clustszind variant.
# #
#
#  (2) add 'clustSizes<-as.integer(clustSizes)' before checking
#      '!is.integer(clustSizes[i])'
#
v1.2.8 >>>> March 19, 2012
  (1) fixed a few warning messages:
#   (a)>>
#* checking R code for possible problems ... NOTE
#genNoisyMeanCov: warning in eigen(Sigma.noisy, sym = TRUE): partial
# argument match of 'sym' to 'symmetric'
#
#    (b)>>>
#** running examples for arch 'i386' ... WARNING
#Found the following significant warnings:
#
# Warning: sd(<matrix>) is deprecated.
# Warning: sd(<matrix>) is deprecated.
# Warning: sd(<matrix>) is deprecated.
# Warning: sd(<matrix>) is deprecated.
#Deprecated functions may be defunct as soon as of the next release of
#R.
#See ?Deprecated.
#** running examples for arch 'x64' ... WARNING
#Found the following significant warnings:
#
# Warning: sd(<matrix>) is deprecated.
# Warning: sd(<matrix>) is deprecated.
# Warning: sd(<matrix>) is deprecated.
# Warning: sd(<matrix>) is deprecated.
#Deprecated functions may be defunct as soon as of the next release of
#R.
#See ?Deprecated.
#
  (2) add 'na.rm=TRUE' to functions 'min', 'max', 'sum', 'mean', 'median', etc.
 |