v1.3.1 >>>> Jan 7, 2013 # (1) added a space between 'Weiliang Qiu' and # '' 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 () for this suggestion! # v1.2.9 >>>> April 2, 2012 # (1) fixed a bug pointed by Dr. Anton Korobeynikov # # 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() is deprecated. # Warning: sd() is deprecated. # Warning: sd() is deprecated. # Warning: sd() 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() is deprecated. # Warning: sd() is deprecated. # Warning: sd() is deprecated. # Warning: sd() 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.