Answers for "density plot normal distribution"

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 "density plot normal distribution"

Python Answers by Framework

Browse Popular Code Answers by Language