how I can convert the string output into data.frame
        Posted  
        
            by 
                user2968058
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user2968058
        
        
        
        Published on 2014-08-22T10:10:00Z
        Indexed on 
            2014/08/22
            10:20 UTC
        
        
        Read the original article
        Hit count: 206
        
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
© Stack Overflow or respective owner