In Scipy documentation, it clearly says for using statistics(especially for a short description of an array):
Import scipy
scipy.stats.describe(a, axis=0, ddof=1, bias=True, nan_policy='propagate')
But I get the AttributeError: module 'scipy' has no attribute 'stats'
then in another part of the documentation, it says :
from scipy import stats
which works fine for me. Actually, I don't get the exact difference between . and from ...... import ...... and why the first one doesn't work. Thank you so much for your help. I would appreciate it if you guys can provide me some links too.