reshape_wide_tt {msSPChelpR} | R Documentation |
Reshape dataset to wide format - tidytable version
Description
Reshape dataset to wide format - tidytable version
Usage
reshape_wide_tt(df, case_id_var, time_id_var, timevar_max = 6, datsize = Inf)
Arguments
df |
dataframe |
case_id_var |
String with name of ID variable indicating same patient.
E.g. |
time_id_var |
String with name of variable that indicates diagnosis per patient.
E.g. |
timevar_max |
Numeric; default 6. Maximum number of cases per id. All tumors > timevar_max will be deleted before reshaping. |
datsize |
Number of rows to be taken from df. This parameter is mainly for testing. Default is Inf so that df is fully processed. |
Value
wide_df
Examples
data(us_second_cancer)
msSPChelpR::reshape_wide_tt(us_second_cancer,
case_id_var = "fake_id",
time_id_var = "SEQ_NUM",
timevar_max = 2,
datsize = 10000)
[Package msSPChelpR version 0.9.1 Index]