-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
MNG01: when the data is split by PARAM, the levels of x_var (AVISIT) should not be retained as they were in entire dataset #785
Comments
Please provide |
|
I learnt today that this has apparently already been fixed in the latest version of g_lineplot which we are not using yet right now. |
Hi @kathrinflunkert you can try the github version using either |
We were now able to upversion the packages and can confirm that the issue described above has already been fixed. |
Example:
Result: For the parameter that only has baseline data the table is not aligned with the plot and shows the second visit with NAs:
As per @yurovska a fix can look like this:
The following line in
mng01_main
data_ls <- split(df, df$PARAM, drop = TRUE)
is to be updated to
The text was updated successfully, but these errors were encountered: