[Fixed]-Installing Scipy.stats on pythonanywhere

1👍

scipy.stats is already installed if scipy is available (it is part of scipy).

You then just need to import it correctly!

Try:

from scipy import stats
👤sascha

Leave a comment