python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
SciPy error: RuntimeWarning: overflow encountered in _beta_ppf
My SciPy version is 1.7.3 and I'm running on an Apple M1 chip (not sure if it's relevant). My Python version is 3.9.11, installed via Annaconda.
I get the error message /opt/anaconda3/lib/python3.9/si...
ramund
Votes: 0
Answers: 2
How to generate random number of lognormal distribution using scipy.stats lognorm with mean and standard deviation already known
I want to generate a random number of lognormal distribution using the scipy.stats lognorm. I have mean and standard deviation already give.
from scipy.stats import lognorm
sigma = 5
mean = 0
randomN...
Umair Mayo
Votes: 0
Answers: 1
Ranksums returns repeated pvalues
I'm trying to create a volcano plots using metabolomics data. Pvalues were obtained using scipy.stats ranksums function. It appears pvalues are repeated or rounded.
My dataframe contains lo2fc values...
Maria Cristina Alvarez
Votes: 0
Answers: 0
Chi2 heat map for categorical data to test for MCAR: cannot unpack non-iterable rv_frozen object
I want to understand if my missing data is MCAR or not.
I have a data set like this, where 0 means the data is present and 1 means the data is missing:
a b c d e
0 1 0 0 0
0 0 0 0 0
0 0...
Slowat_Kela
Votes: 0
Answers: 1