-
Notifications
You must be signed in to change notification settings - Fork 12
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
Weird LLOQ printing #1123
Comments
Lol, it's the way how R (studio?) prints things in the console. The actual value of 0.9999... instead of 1 arises from unit conversion. When the user sets 1 as LLOQ, it is supposed to be "mg/l", and the value is internally converted to the base unit of the dimension... with numerical imperfection. Nothing we can do here. |
With the printing setting of 7 decimal places (R default) I would still expect that the print function of the dataset rounds correctly. E.g. with the standrad print function:
But with the dataset still:
Why? |
I think the error is in the printline function of ospsuite.utils: It just prints the value via
|
When trying to set and check an LLOQ value in
DataSet
objects,The value is oddly printed
while the value seems correct
The text was updated successfully, but these errors were encountered: