how I can convert the string output into data.frame
- by user2968058
i have a data set called SIZEDIST$AVG.µm., and i have fitted this data with a weibull curve.
now i have generated the quantiles by using the quantile function and now i want to access the output of this function generated at the interval of p=0.01.
fwbl<-fitdist(SIZEDIST$AVG.µm., "weibull",start=list(shape=0.8,scale=1))
fwbl
quantwbl<-quantile(fwbl,probs=seq(.1,.99,.01))
quantwbl
str(quantwbl)
using str(quantwbl) i can visualize the output but i cant convert them into data.frame