I have a CSV with 22 cols, within each cell is complied data eg(1,2,3,4,5,6,7,8,9,10,11,12.) sep by commas. Installing the stringr package I can use the str_split_fixed() function to my data.
I can perform
str_split_fixed(a$col_1, “,”,12)
to split a single col, but I want to apply this function to all columns of CSV to save typing out the above code 22 times... Any help is much appreciated