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
Would it be possible to add an indicator of imputed = TRUE when imputeZeroes = TRUE? It is possible to check if all columns are zero, but that may not be sufficient as some rows may have no acceleration but are not non-wear.
The goal is to do a last observation carried forward so that we can get out exactly what comes out of actiLife software.
The text was updated successfully, but these errors were encountered:
But yes, that information is also stored in the missingness attribute. There could be an option (for example in the as.data.frame method) or a separate method to add an indicator column?
It is also possible that the imputezeroes feature in the C++ parser isn't really a good way to handle the imputation task. As long as missingness is recorded correctly while parsing, imputation could be done afterwards, using the incomplete data matrix and the missingness attribute. Therefore there could be a separate imputation procedure for example with multiple options.
Would it be possible to add an indicator of
imputed = TRUE
whenimputeZeroes = TRUE
? It is possible to check if all columns are zero, but that may not be sufficient as some rows may have no acceleration but are not non-wear.The goal is to do a last observation carried forward so that we can get out exactly what comes out of actiLife software.
The text was updated successfully, but these errors were encountered: