I'm working with a delim file that has no headers for the columns. There are 45 columns but I only want the first 26 of them. I can't quite figure out the right syntax for cols_only when dealing with multiple un-named columns. Where does the cols_only go given the code I have below?
ex <- read_delim("ex.txt", delim = ",", col_names = FALSE, skip = 4)