Modify parameter to be variable parameter for sensitivity analysis with the ospsuite R package #1754
-
|
I have noticed that some parameter paths are not available for sensitivity analysis in R. I can look at the list of variable parameters using the function |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
|
The flag is a bit-field where each bit represents a specific state of the parameter in PK-Sim/MoBi. The states (bits) are defined as following Example: Here: 52 = 32+16+4 meaning that the parameter is defined as: The visible flag is used by PK-Sim only, but if one day you send a simulation from MoBi back to PK-Sim parameter will disappear in the UI, so we should set it as visible as well. So we need to make 3 changes So in total: +2 -4 +8 ➡️ Add 6 to the original flag to make you parameter appear everywhere (in the PI etc.) So the modified parameter chunk in the pkml file will be: If after that the parameter still does not appear in the sensitivity analysis, it might have other reasons, e.g.
|
Beta Was this translation helpful? Give feedback.
The flag is a bit-field where each bit represents a specific state of the parameter in PK-Sim/MoBi.
If the n-th bit is set to 1: the flag is enabled, otherwise disabled.
The states (bits) are defined as following
Example:
Here: 52 = 32+16+4 meaning that the parameter is defined as:
The visible flag is used by PK-Sim onl…