Skip to content

Commit

Permalink
Fixes #19 predPK values instead of RatioPK values in table (#275)
Browse files Browse the repository at this point in the history
Fixes #19 predPK values instead of RatioPK values in table (#275)
  • Loading branch information
msevestre authored Sep 11, 2020
2 parents 7c04569 + dbbad2e commit afa3f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/code/qualification/plotQualificationPKRatio.m
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
XcellValues = arrayfun(@(x)getfield(x, Xparam), Result, 'UniformOutput', false);
YcellValues = arrayfun(@(x)getfield(x, 'RatioPK'), Result, 'UniformOutput', false);
ObscellValues = arrayfun(@(x)getfield(x, 'obsPK'), Result, 'UniformOutput', false);
PredcellValues = arrayfun(@(x)getfield(x, 'RatioPK'), Result, 'UniformOutput', false);
PredcellValues = arrayfun(@(x)getfield(x, 'predPK'), Result, 'UniformOutput', false);
StudycellValues = arrayfun(@(x)getfield(x, 'Study'), Result, 'UniformOutput', false);
AGEcellValues = arrayfun(@(x)getfield(x, 'AGE'), Result, 'UniformOutput', false);
BWcellValues = arrayfun(@(x)getfield(x, 'BW'), Result, 'UniformOutput', false);
Expand Down

0 comments on commit afa3f86

Please sign in to comment.