Reputation: 391
Was trying to find the reference documentation of scipy.stats.nanmean
, but the links from Google now get redirected to the main Scipy entry page, and searching for stats
then nanmean
draws a blank. Is this a temporary website glitch, or has something major changed in Scipy?
Upvotes: 1
Views: 64
Reputation: 391
Can't find it in the documentation, but the help system built into scipy gives what I was looking for:
from scipy import stats
stats.nanmean ?
Upvotes: 2