MCPcopy
hub / github.com/pandas-dev/pandas / var

Method var

pandas/tests/frame/test_reductions.py:315–316  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

313 return len(algorithms.unique1d(s.dropna()))
314
315 def var(x):
316 return np.var(x, ddof=1)
317
318 def std(x):
319 return np.std(x, ddof=1)

Calls

no outgoing calls

Tested by

no test coverage detected