Answers for "calculate normal distribution python"

4

python random from normal distribution

>>> mu, sigma = 0, 0.1 # mean and standard deviation
>>> s = np.random.normal(mu, sigma, 1000)
Posted by: Guest on May-12-2020
0

plot normal distribution python

import matplotlib.pyplot as plt
import numpy as np
import scipy.stats as stats
import math

mu = 0
variance = 1
sigma = math.sqrt(variance)
x = np.linspace(mu - 3 * sigma, mu + 3 * sigma, 100)
plt.plot(x, stats.norm.pdf(x, mu, sigma))
plt.show()
Posted by: Guest on July-10-2021

Code answers related to "calculate normal distribution python"

Python Answers by Framework

Browse Popular Code Answers by Language