I referred this post: https://stackoverflow.com/questions/38141951/why-does-scipy-norm-pdf-sometimes-give-pdf-1-how-to-correct-it
But I still have some confusion
import scipy.stats as stats
x = np.array([ 0.7972, 0.0767, 0.4383, 0.7866, 0.8091,
0.1954, 0.6307, 0.6599, 0.1065, 0.0508])
print('mean:', x.mean()) # 0.45511999999999986
print('std', x.std()) # 0.30346538451691657
y = stats.norm.pdf(x, mean, std)
plt.plot(x, y, c='b')
plt.show()
This means that the probability of an mean value is 131%?
Given a point and how to compute the probability of a value? Is this possible?
Add my situation:
I understand that in a continuous variable the probability of any point is 0.
But, my users ask me what is the probability of 100 in my data, how can I quantify 100?