NCA analysis using PKNCA - errors and different results than expected #283
-
Rversion = 4.3.2
Note: I am using asnumeric and is.na to make sure my dose, concentration and time are manipulated correctly; I am using read_excel() to read my data and in the beginning I split my data by route creating 2 data frames Thank you so much for your help! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 16 replies
-
The first issue is the main one. Without fixing it, I'm not sure how you got results of any type. The way that you specified the call to PKNCAconc, you didn't indicate a subject column. Given your description of the study, that is the most likely issue. The way to specify the subject column is to add the subject as the last grouping level similar to the.below call:
To get the group mean, you would run For the difference with Phoenix, I would need to know more about what parameters you are calculating and your data. Prior tests comparing PKNCA to Phoenix have found almost no differences, and where the differences exist, they are intentional (AUC for all 0 concentrations and an edge case of half lives around order of automatically selecting the best half life). |
Beta Was this translation helpful? Give feedback.
-
https://cran.r-project.org/web/packages/PKNCA/vignettes/v04-sparse.html |
Beta Was this translation helpful? Give feedback.
The first issue is the main one. Without fixing it, I'm not sure how you got results of any type.
The way that you specified the call to PKNCAconc, you didn't indicate a subject column. Given your description of the study, that is the most likely issue. The way to specify the subject column is to add the subject as the last grouping level similar to the.below call:
To get the group mean, you would run
summary()
on your NCA results object.For the difference with Phoenix, I would need to know more about what parameters you are calculating and your data. Prior tests comparing PKNCA to Phoenix have found almost no differences, a…