I have a dataset that I know has a Pareto distribution. Can someone tell me how to install this dataset in Scipy? I got the code below, but I have no idea what is being returned to me (a, b, c). Also, after getting a, b, c, how do I calculate the variance using them?
import scipy.stats as ss import scipy as sp a,b,c=ss.pareto.fit(data)
python scipy distribution
alex
source share