Make a normal distribution instance from sample data.
(cls, data)
| 1186 | |
| 1187 | @classmethod |
| 1188 | def from_samples(cls, data): |
| 1189 | "Make a normal distribution instance from sample data." |
| 1190 | return cls(*_mean_stdev(data)) |
| 1191 | |
| 1192 | def samples(self, n, *, seed=None): |
| 1193 | "Generate *n* samples for a given mean and standard deviation." |
nothing calls this directly
no test coverage detected