We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found that llogistic2 model has no fixed information
x = LL2.4(fixed = c(NA, 0, 1, NA)) x$fixed NULL fit <- drm(vol ~ conc, data = algae, fct = LL2.4(fixed = c(NA, 0, 200, NA))) fit$fct$fixed NULL
In the llogitic2 function, return list does not include "fixed" like in llogistic:
returnList <- list(fct = fct, ssfct = ssfct, names = names, deriv1 = deriv1, deriv2 = deriv2, derivx = derivx, edfct = edfct, bfct = bfct, inversion = invfct, name = fctName, text = fctText, noParm = sum(is.na(fixed)), lowerAs = lowerAs, upperAs = upperAs, monoton = monoton)
Is this missing intentional? If not, could you please add fixed to returnList?
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I found that llogistic2 model has no fixed information
In the llogitic2 function, return list does not include "fixed" like in llogistic:
returnList <- list(fct = fct, ssfct = ssfct, names = names,
deriv1 = deriv1, deriv2 = deriv2, derivx = derivx, edfct = edfct,
bfct = bfct, inversion = invfct, name = fctName, text = fctText,
noParm = sum(is.na(fixed)), lowerAs = lowerAs, upperAs = upperAs,
monoton = monoton)
Is this missing intentional? If not, could you please add fixed to returnList?
Thanks!
The text was updated successfully, but these errors were encountered: