MCPcopy Index your code
hub / github.com/python/cpython / variance

Method variance

Lib/statistics.py:1367–1369  ·  view source on GitHub ↗

Square of the standard deviation.

(self)

Source from the content-addressed store, hash-verified

1365
1366 @property
1367 def variance(self):
1368 "Square of the standard deviation."
1369 return self._sigma * self._sigma
1370
1371 def __add__(x1, x2):
1372 """Add a constant or another NormalDist instance.

Callers 1

Calls

no outgoing calls

Tested by 1