You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In results from current Health-GPS main branch, a prefix "mean_" is added to indicate mean values of variables, which is inconsistent with the variable names in R scripts. Therefore, we need to remove "mean_" before processing data.
Add the following commands to https://github.com/imperialCHEPI/healthgpsrvis/blob/main/R/data-process.R Line 1.
## Renaming variables if necessary, to remove prefix ##
names(data) <- sub("^mean_", "", names(data))
The text was updated successfully, but these errors were encountered:
In results from current Health-GPS main branch, a prefix "mean_" is added to indicate mean values of variables, which is inconsistent with the variable names in R scripts. Therefore, we need to remove "mean_" before processing data.
Add the following commands to https://github.com/imperialCHEPI/healthgpsrvis/blob/main/R/data-process.R Line 1.
The text was updated successfully, but these errors were encountered: