“Działka dystrybucyjna Python” Kod odpowiedzi

wykres prąd normalny 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()
Gifted Gull

Działka dystrybucyjna Python

sns.distplot(df['Rating'], hist=True, kde=True, 
             bins=int(15), color = 'darkblue', 
             hist_kws={'edgecolor':'black'},
             kde_kws={'linewidth': 4})
Adventurous Addax

Dystrybucja fabuły Seorborn

x = np.random.normal(size=100)
sns.distplot(x);
Proud Penguin

Mean = [0,0] kowariancja = [[1,0], [0,100]] ds = np.random.multivariate_normal (średnia, kowariancja, 500) dframe = pd.dataframe (ds, kolumny = ['col1', ',' col2 ']) fig = sns.kdeplot (dframe) .get_figure () fig.savefig (' kde1.png ')

mean =[0,0]
covariance = [[1,0],[0,100]]

ds = np.random.multivariate_normal(mean,covariance,500)

dframe = pd.DataFrame(ds, columns=['col1', 'col2'])

fig = sns.kdeplot(dframe).get_figure()
fig.savefig('kde1.png')
Comfortable Cod

Odpowiedzi podobne do “Działka dystrybucyjna Python”

Pytania podobne do “Działka dystrybucyjna Python”

Więcej pokrewnych odpowiedzi na “Działka dystrybucyjna Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu