ใช้ fitdistrplus:
นี่คือลิงค์ CRAN ของ fitdistrplus
นี่คือลิงค์บทความสั้น ๆสำหรับ fitdistrplus
ถ้าลิงค์วิกเน็ตต์ไม่ทำงานให้ค้นหา "การใช้ไลบรารี fitdistrplus เพื่อระบุการแจกจ่ายจากข้อมูล"
บทความนี้อธิบายการใช้งานแพ็คเกจได้ดี คุณสามารถดูว่าการกระจายแบบต่างๆนั้นพอดีในช่วงเวลาสั้น ๆ อย่างไร มันยังสร้าง Cullen / Frey Diagram
#Example from the vignette
library(fitdistrplus)
x1 <- c(6.4, 13.3, 4.1, 1.3, 14.1, 10.6, 9.9, 9.6, 15.3, 22.1, 13.4, 13.2, 8.4, 6.3, 8.9, 5.2, 10.9, 14.4)
plotdist(x1)
descdist(x1)
f1g <- fitdist(x1, "gamma")
plot(f1g)
summary(f1g)