用R语言怎么做weibull分布拟合三参数的

2025-05-06 12:39:37
推荐回答(1个)
回答1:

x <- rnorm(10000,0,1)
hist(x, col="grey", prob=TRUE)
lines(density(x), col="red")