I have a list of fitdist
objects, which I have stored using this piece of code.
norm_dist_res <- list()
for(i in 1:10)
{
x <- 1+(8000*(i-1))
y <- 8000*i
print (x)
print(y)
norm_dist_res[[i]] = norm_dist_res[[i]] <- fitdist(data=as.vector(g_all_p$data[x:y,]), distr="norm")
}
Is there a way to plot all the normal distributions extracted from fittest
with a different color to show how the data is distributed?
Or in general how to visualize multiple normal distributions?