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
when making the standardisation of recruitment series before fitting the glm, we divide by the mean of the series whithout dicscarding das_qal_id > 4
For 2025, we should change wger[!is.na(wger$das_qal_id) & wger$das_qal_id==3,c("value")] <- NA
for wger[!is.na(wger$das_qal_id) & (wger$das_qal_id==3 | wger$das_qal_id >4),c("value")] <- NA
in R/recruitment/utilities.R
The text was updated successfully, but these errors were encountered:
when making the standardisation of recruitment series before fitting the glm, we divide by the mean of the series whithout dicscarding das_qal_id > 4
For 2025, we should change
wger[!is.na(wger$das_qal_id) & wger$das_qal_id==3,c("value")] <- NA
for
wger[!is.na(wger$das_qal_id) & (wger$das_qal_id==3 | wger$das_qal_id >4),c("value")] <- NA
in R/recruitment/utilities.R
The text was updated successfully, but these errors were encountered: