“CDF Emprica Python” Kode Jawaban

CDF Emprica Python

# fit an empirical cdf to a bimodal dataset
from matplotlib import pyplot
from numpy.random import normal
from numpy import hstack
from statsmodels.distributions.empirical_distribution import ECDF
# generate a sample
sample1 = normal(loc=20, scale=5, size=300)
sample2 = normal(loc=40, scale=5, size=700)
sample = hstack((sample1, sample2))
# fit a cdf
ecdf = ECDF(sample)
# get cumulative probability for values
print('P(x<20): %.3f' % ecdf(20))
print('P(x<40): %.3f' % ecdf(40))
print('P(x<60): %.3f' % ecdf(60))
# plot the cdf
pyplot.plot(ecdf.x, ecdf.y)
pyplot.show()
Shy Shrike

CDF Emprica Python

...
# get cumulative probability for values
print('P(x<20): %.3f' % ecdf(20))
print('P(x<40): %.3f' % ecdf(40))
print('P(x<60): %.3f' % ecdf(60))
Shy Shrike

CDF Emprica Python

P(x<20): 0.149
P(x<40): 0.654
P(x<60): 1.000
Shy Shrike

Jawaban yang mirip dengan “CDF Emprica Python”

Pertanyaan yang mirip dengan “CDF Emprica Python”

Lebih banyak jawaban terkait untuk “CDF Emprica Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya