R fitdistrplus : Issue in plotting - 'by' argument too much small

335 Views Asked by At

I would like to understand the issue with plotting a fitdistrplus object:

    ftnb = tryCatch(expr = fitdist(unlist(x[,ftr]),distr="nbinom",discrete = TRUE),
                      error = function(err) {})
if (class(ftnb) %in% c("fitdist")) {
  print(summary(ftnb))
  plot(ftnb))
}

The summary of my distribution fit is as follows:

Fitting of the distribution ' nbinom ' by maximum likelihood Parameters : 

         estimate Std. Error
size 5.915112e-01         NA
mu   1.330646e+11         NA
Loglikelihood:  -2543.973   AIC:  5091.946   BIC:  5097.074 
Correlation matrix:
[1] NA

I clearly do not see a fit, as I see an "NA" in the standard errors of the 2 parameter estimates. The plot command comes up with the following error, which I would like to understand:

Error in seq.default(min(xval), max(xval), by = 1) :   'by' argument is much too small 

Please help.

0

There are 0 best solutions below