我擬合分佈於給定data.then我已經估計distribution.I的參數也有繪製的經驗CDF在R.使用ECDF()命令現在我要繪製估計分佈cdf與經驗cdf一起。我如何做到這一點? ecdf()命令能幫助我嗎?如何繪製估計CDF與經驗CDF
2
A
回答
1
是的,ecdf
可以幫到你。它有一個繪圖方法。您可以在下面看到正常分配的可能代碼。
x <- rnorm(100)
plot(ecdf(x))
lines(seq(-3, 3, by=.1), pnorm(seq(-3, 3, by=.1)), col=2)
編輯:您可以使用對數邏輯分佈函數代替做同樣的事情。它在例如包actuar
中實施。
# load package
require(actuar)
# check out the parametrization!
?dllogis
# estimate shape and scale from your data
shape <- 20
scale <- 1
# Don't do this. Use your own data instead.
x <- rllogis(100, shape=shape, scale=scale)
# Plotting the empirical distribution function
plot(ecdf(x))
# x-values for plotting distribution function
xvals <- seq(min(x), max(x), length=100)
# plot estimated distribution function with your estimated shape and scale
lines(xvals, pllogis(xvals, shape=shape, scale=scale), col=2)
+0
Thanx親愛的,讓我更具體地問我的問題 我估計「loglogistic分佈」的參數我想比較loglogistic分佈的cdf與具體的cdf如何我可以比較它visual.I有plottd經驗cdf使用ecdf()。 LL cdf的繪圖依然存在。 – user2881894
相關問題
- 1. 如何繪製CDF R中
- 2. 如何在Python中繪製matplotlib中的經驗cdf?
- 3. 如何在python中繪製cdf
- 4. 如何從PDF繪製CDF functon R中
- 5. 在R中繪製數據集的CDF?
- 6. 在matplotlib中繪製離散計數數據的有界CDF python
- 7. 如何使用python的seaborn來繪製CDF?
- 8. 如何在Python中繪製matplotlib中的cdf?
- 9. Spark mllib.stat.Statistics - kolmogorovSmirnovTest CDF
- 10. CDF在tensorflow
- 11. 核心CDF估計:積分下降到零
- 12. CDF取決於核密度估計中使用的帶寬?
- 13. 如何在Matlab中給定點評估emprical cdf?
- 14. 從webMathematica提供CDF
- 15. 在iPad上的CDF?
- 16. 擬合經驗CDF曲線以找到確切的值
- 17. 從直方圖得到計數到CDF
- 18. 在C中計算卡方CDF
- 19. 在Python中繪製熊貓系列的CDF
- 20. 在matlab中繪製同一軸上的cdf和正則圖形
- 21. 在Python中讀取文件並繪製CDF
- 22. 使用Statistics :: Descriptive模塊爲CDF圖繪製數據?
- 23. Matlab:如何創建一個CDF數組
- 24. Python:如何繪製一個給定數組數組的cdf函數
- 25. PDF和CDF沒有SciPy
- 26. 情節沒有顯示CDF
- 27. 多變量無表情CDF
- 28. 如何在MATLAB中爲二項分佈計算PMF和CDF?
- 29. 如何計算給定CDF的逆高斯分佈?
- 30. 如何計算excel中卡方分佈的CDF?
感謝名單親愛的,讓我問我的問題更具體 我已經估計「loglogistic分配」的參數,我想比較loglogistic分佈的CDF與emperical CDF我怎麼能比它visually.I有plottd的經驗CDF使用ecdf()。LL cdf的繪圖依然存在。 – user2881894
這是一個編碼網站。郵政編碼。 –