You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Thanks a lot for your tool, I find it very useful and easy to use. I noticed that in the code for computing correlation, both Fisher's method and permutation test approaches are implemented manually. Is there any reason not to use scipy implementation? As far as I understood from their documentation, it uses the same transformation for Fisher's test, also allows permutation test, and is many times tested by the community.
The text was updated successfully, but these errors were encountered:
Correct me if I'm wrong, @michalk8, but it's for performance reasons, right? Last time I checked, Scipy doesn't cope well with computing many pairwise correlations, etc.
Correct me if I'm wrong, @michalk8, but it's for performance reasons, right? Last time I checked, Scipy doesn't cope well with computing many pairwise correlations, etc.
Interesting, thanks! Could you also add support for missing values? I sometimes have them in my data when working with patient-level cell-type pseudobulks instead of single-cell data. If a sample doesn't have a particular cell type, it results in missing values. scipy allows to omit them and calculate the correlation, but here, I didn't find such an option.
Hi! Thanks a lot for your tool, I find it very useful and easy to use. I noticed that in the code for computing correlation, both Fisher's method and permutation test approaches are implemented manually. Is there any reason not to use scipy implementation? As far as I understood from their documentation, it uses the same transformation for Fisher's test, also allows permutation test, and is many times tested by the community.
The text was updated successfully, but these errors were encountered: