Skip to content

Releases: erdogant/pca

v1.9.0

16 Feb 15:44
Compare
Choose a tag to compare
  • set default std=3 wich is more common for outlier detection
  • Multiple test corrections for the hotelling t2 test
  • multipletests is set in the predict function and not during initialization anymore.
  • y_proba is the corrected Pvalue. Praw is the uncorrected Pvalue in the output dataframe

v1.8.6

11 Jan 22:09
Compare
Choose a tag to compare
  • Font color inherits the arrow color (default).
  • Font colors can be adjusted in the plots.
  • Sizes of the scatter can be adjusted with parameter s.
  • Colors of the scatter ben be adjusted with parameter c.
  • fig can be given as an input parameter to make iterative changes to the plot.

Examples can be found here.

v1.8.5

02 Dec 15:14
Compare
Choose a tag to compare
  • sklearn changed into scikit-learn in both requirements and setup file.

v1.8.4

01 Nov 20:47
Compare
Choose a tag to compare
  • Fix for overlapping annotations in biplot issue #33
  • Updated docstrings.
  • Set the same order for input parameters for the plotting functions.

v1.8.3

06 Sep 19:43
Compare
Choose a tag to compare

Fix for big arrowheads.

v1.8.2

08 May 20:05
Compare
Choose a tag to compare
  • Added boolean to choose whether to update outlier parameters or not.
  • Example can be found here.

v1.8.1

07 May 21:51
Compare
Choose a tag to compare
  • Detect and plot outliers for new unseen transformed samples

v1.8.0

15 Apr 09:46
Compare
Choose a tag to compare
  • added parameter method to change between pca, sparse_pca and trunc_svd.
  • Fix for trunc_svd.

Examples:

model = pca(method='sparse_pca')
model = pca(method='trunc_svd')
model = pca(method='pca')

v1.7.2

09 Apr 10:45
Compare
Choose a tag to compare
  • Fix for not showing scatter in case of biplot using cmap=None

v1.7.1

08 Apr 11:23
Compare
Choose a tag to compare
  • Improved speed in plotting in case of having thousands of samples by setting parameter label=None

model.biplot(label=None)