-
Couldn't load subscription status.
- Fork 674
Open
Labels
Description
A list for keeping track of things that we might change when breaking backwards compat at some point:
- merge sparse pca
- merge Change the default number of nearest neighbors search in Ingest #1111
- merge Add 'equal_frequency' option to highly_variable_genes #572
- set the cachdir default to
user_cache_dir(…),~/.scanpy/cache/or~/.cache/ - stationary states in DPT: https://github.com/theislab/scanpy/blob/b11b4abe5e16053c010e57b2dd3a27396a4b0cf2/scanpy/neighbors/__init__.py#L853-L857 thanks to @Marius1311 for pointing it out!
- rename
log2fcor similarly: Documentation for rank_genes_groups #446 - add
inplacefunctionality where easily possible, that's not a simple renaming; a function that hasinplacein it, should only return the annotation ifinplace=False; thecopyfunctions return the wholeadata, which we don't want... - rename
n_compston_componentseverywhere - replace default pca solver with 'arpack'
- change default solver in logreg solver in rank_genes_groups to lbfgs
- merge Fix t-tests when variance is zero #621
- Transition away from positional APIs: Transition away from positional APIs #464 (actually backwards compatible through decorator!)
done in #3653
- make
t-testorwilxoconthe default oftl.rank_genes_groups - make
pp.highly_variable_genesreturn a df instead of a recarray...
anndata:
- merge Maintain dtype during initialization anndata#130 and fix Scanpy tests