R/project.R
decode_multi_large_df.Rd
Given an extremely large data frame to decode (such as those of UK Biobank, over 500K rows), split the data into a list of smaller data frames, decode each smaller data frame, and then merge list into a larger data frame.
decode_multi_large_df(df, coding, df_size = 2000)
data.frame to process
coding data frame
size of the smaller data frames in number of rows.
decoded data frame in terms of columns
This method is not necessarily faster than merging the entire data frame, but it shows a progress bar.