Displaying 1 result from an estimated 1 matches for "inhibitorconc".
2001 Jul 31
4
nlme: bug in getCovariateFormula (PR#1038)
...) is:
eval(parse(text = paste("~", deparse(form))))
however, if deparse(form) exceeds 'width.cutoff (which defaults to 60)',
this results in inappropriately placed "~" signs:
For example, in my application with the error, form is
UnCompetitive(MethoxyresorufinConc, InhibitorConc, Vmax, Km, Ki)
the result of the paste() operation in the last line of getCovariateFormula
is:
> paste("~",deparse(form))
[1] "~ UnCompetitive(MethoxyresorufinConc, InhibitorConc, Vmax, Km, "
[2] "~ Ki)"
extending width.cutoff gives the intended value:
>...