-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
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
Feature Request: linCmt() on the right hand side with less automation #540
Comments
Yes it can.
This would require a large rewrite of
The In short this seemingly simple request takes alot of work, so for right now I am not going to do it. |
In the UI that I am rewriting you will be able to mix ODE and linCmt but currently that isn't supported for nlmixr |
I had a guess that it wasn't simple. Good to know that I can use |
The arguments are simply to trigger the autodetection. I haven't tested if the mangling done by nlmixr currently would break it, so I haven't really documented it. It works in RxODE right now, you can see it in one of the many linear compartment model tests: It still isn't really a function. |
I have a model where I want to simultaneously use two
linCmt()
PK models while fitting the PD model. But, I think thatlinCmt()
is only valid on the left hand side of an error model assignment (i.e.linCmt() ~ prop(prop.err)
).The feature request here has a few different parts to attempt to have the goal of using it for different drugs in the same model.
linCmt()
go on the right hand side of an assignment statement (e.g.cp = linCmt()
)? Maybe it already can, but I have not seen documentation of an example of that.linCmt()
drug at the same time. If I need to do a calculation likecp_drug1 = linCmt([parameters for drug 1])
,cp_drug2 = linCmt([parameters for drug 2])
, and then some calculation withcp_drug1
andcp_drug2
such as a competitive Emax model, I can't immediately think of a way to do that.)An example of what I'd like to be able to do is below.
The text was updated successfully, but these errors were encountered: