Skip to content

Commit a20c744

Browse files
committed
Version 0.3.1 + README
1 parent 1078994 commit a20c744

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,28 @@
1-
## sparsecca
1+
# sparsecca
22

33
Python implementations for Sparse CCA algorithms. Includes:
44

55
* Sparse (multiple) CCA based on Penalized Matrix Decomposition (PMD) from Witten et al, 2009.
66
* Sparse CCA based on Iterative Penalized Least Squares from Mai et al, 2019.
7-
8-
One main difference between these two is that while the first is very simple it assumes datasets to be white.
9-
10-
### Installation
117

12-
#### Dependencies
8+
One main difference between these two is that while the first is very simple it assumes datasets to be white.
139

14-
In addition to basic scientific packages such as numpy and scipy, iterative penalized least squares needs either glmnet\_python or pyglmnet to be installed.
10+
## Installation
1511

16-
#### This package can be installed normally with
12+
### sparsecca is available on PyPI
1713

1814
```
19-
git clone https://github.com/theislab/sparsecca
20-
cd sparsecca
21-
pip install .
15+
pip install sparsecca
2216
```
2317

24-
### Usage
18+
### Iterative penalized least squares support
19+
20+
In addition to basic scientific packages such as numpy and scipy, iterative penalized least squares needs either glmnet\_python or pyglmnet to be installed.
21+
22+
## Usage
2523

2624
See examples, https://teekuningas.github.io/sparsecca
2725

28-
### Acknowledgements
26+
## Acknowledgements
2927

3028
Great thanks to the original authors, see Witten et al, 2009 and Mai et al, 2019.

sparsecca/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.3.0"
1+
__version__ = "0.3.1"
22

33
from ._cca_pmd import cca as cca_pmd
44
from ._multicca_pmd import multicca as multicca_pmd

0 commit comments

Comments
 (0)