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
|
Changes in development
+ Add useNames parameter to all functions
+ fix incomplete method signature of rowQuantiles
Changes in version 1.3
+ Avoid C++14 features. This should fix the reoccuring installation problems.
+ Support center argument in colVars (and friends). This can speed up
the calculation if both are needed. Note that center must be a proper
estimate of the column means.
+ Fix bug that broke test on ARM architectures
+ Add extensive section on how to fix installation problems to README
+ Fix compatibility with matrixStats v.0.58.0
+ Fix bug in colCounts, colAnys, colAlls, colRanks if the sparse matrix
contained explicit zeros.
Changes in version 1.2
+ Use numerically stable algorithms for sum, mean, and variance
+ Implement dedicated function for rowSums2, rowMeans2, rowVars
which avoid transposing the input matrix to call the colXXX version
+ Support logical input (lgCMatrix) for all methods that matrixStats
supports. Introduce new class xgCMatrix as union class of dgCMatrix
and lgCMatrix.
+ Fix bug in colWeightedVars() that returned slightly off results on
Linux, because there abs() internally returns integers instead of
doubles
+ Change argument name in colRanks from `preserve.shape` to
`preserveShape` to match matrixStats (thanks @LTLA for reporting)
+ Fix bug in low-level `quantile_sparse()` related to +- Inf
(thanks @LTLA for reporting)
+ Move MatrixGenerics from Imports to Depends so that loading
matrixStats does not break calls to sparseMatrixStats
(thanks @hpages for reporting)
+ Fix bug in [col|row]Quantile which ignored drop argument if
length(probs) == 1
Changes in version 1.0.5 (2020-05-17)
+ Fix links in documentation to get rid of WARNINGS
Changes in version 1.0.4 (2020-05-17)
+ Fix bugs in colTabulates
+ Update documentation to avoid warnings in build on Windows
Changes in version 1.0.3 (2020-05-17)
+ Fix bug in colAnys and colAlls if value = TRUE
Changes in version 1.0.2 (2020-05-10)
+ Fix bug in colMaxs, colMins related to missing values
Changes in version 1.0.1 (2020-05-08)
+ Fix bugs in colMaxs, colMins, colAnys
+ Fix bug in colLogSumExps
Changes in version 0.0.99 (2020-04-03)
+ Submitted to Bioconductor
|