Skip to content
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

Integration of LLOQ in Qualification Plots #1043

Open
2 of 4 tasks
pchelle opened this issue May 5, 2023 · 0 comments
Open
2 of 4 tasks

Integration of LLOQ in Qualification Plots #1043

pchelle opened this issue May 5, 2023 · 0 comments
Labels
question Further information is requested

Comments

@pchelle
Copy link
Collaborator

pchelle commented May 5, 2023

Checking how this was done in the Matlab version of the Reporting Engine,
it seems that and additional file is exported for LLOQ with the suffix LLOQ as indicated below

% Check and add LLOQ to Data
LLOQcsvfile = replace(csvfile, '.csv', '_LLOQ.csv');
if ~isfile(LLOQcsvfile)
    Data.LLOQ = [];
    Data.LLOQUnit = [];
else
    tLLOQ = readtable(LLOQcsvfile, 'Encoding', 'UTF-8');
    % outputs
    Data.LLOQ = tLLOQ{1,1};
    Data.LLOQUnit = tLLOQ{1,2};
end

@Yuri05

  • Should I follow the same process in the R version ?
  • Which plots should integrate the LLOQ ?
    • Time Profiles ?
    • Population Time Profiles ?
    • Comparison Time Profiles ?
    • Merged Goodness of Fit ?
@pchelle pchelle added the question Further information is requested label May 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant