-
Notifications
You must be signed in to change notification settings - Fork 0
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
Enhancement: NCA Parameter Input #168
Comments
@billdenney do you have any suggestions for how we can implement this? |
That's not the way that PKNCA is intended to work. Rather than calculate everything and then have the user select what they want, the way that PKNCA works is that the user selects what they want and then the required parameters are calculated. Some parameters cannot be calculated for every interval (for instance, IV parameters should not be calculated for extravascular data). The preferred implementation would be to select the desired set of parameters for calculation based on the types of data you're currently analyzing (proposed in billdenney/pknca#157). This is how it's done in WinNonlin and OpenNCA. The reason that PKNCA doesn't directly follow the design that others have used is that it prevents analysis of multiple types of data at the same time. For instance, if you have both IV bolus, extravascular, and urine data in the same dataset, PKNCA can analyze it all at the same time. With WinNonlin, you have to run 3 separate times and then pull the data back together. The difference by implementing the PKNCA issue above is that it would be applied per-interval. So, the power to calculate many different types of data simultaneously would be maintained. Additionally, some parameters (like |
Thanks Bill! Thats kind of what I meant; I know PKNCA can't calculate all the parameters for every interval, so I was wondering if there is a way for pknca to calculate all of the parameters that it is able to, and leave the ones that it can't. That way the user never has to select anything and it is all done automatically. If that makes sense. I have some follow up questions:
:) |
Description
There are many possible parameters available with the PKNCA package. We want an input table in settings for the user to select which parameters they would like to have calculated.
Preferably, parameters that cannot be calculated with the uploaded dataset are removed/hidden from this input table.
Definition of Done
The text was updated successfully, but these errors were encountered: