⏳۵۰٪ تخفیف فقط تا پایان جشنواره؛ بعدش همهچیز به قیمت قبل برمیگرده!
مشاهده دورههاکد زیر اجرا نمیشود وهیچ تصویری رسم نمیشه
import numpy as np
import matplotlib.pyplot as plt
import scipy.stats as st
x = ۱۰۰np.sin([np.linspace(۰,۱۰,۱۰۰)])
X = np.vstack([x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x,x])
e= ۱۰np.random.randn(۲۰,۱۰۰)
X_err = X+e
ll = st.scoreatpercentile(X_err.T, ۱۰) # ۱۰th percentile
ml = st.scoreatpercentile(X_err.T, ۵۰) # ۵۰th percentile
ul = st.scoreatpercentile(X_err.T, ۹۰) # ۹۰th percentile
plt.plot(ml,'g',lw=۲,label='Median')
plt.plot(ul,'r',label='۹۰%')
plt.plot(ll,'b',label='۱۰%')
plt.xlabel('Time')
plt.ylabel('X')
plt.legend(loc='best')
plt.show()
اولین نفری باشید که به این پرسش کمک میکند و مسیر حل مشکل را باز میکند.
اولین پاسخ را بنویسیدشاید پاسخ شما همینجا باشد