View source: R/reshape_wide_tidyr.R
| reshape_wide_tidyr | R Documentation | 
Reshape dataset to wide format - tidyr version
reshape_wide_tidyr(
  df,
  case_id_var,
  time_id_var,
  timevar_max = 6,
  datsize = Inf
)
| 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. | 
df
data(us_second_cancer)
msSPChelpR::reshape_wide_tidyr(us_second_cancer,
                         case_id_var = "fake_id", 
                         time_id_var = "SEQ_NUM", 
                         timevar_max = 2,
                         datsize = 10000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.