For example, if I was reading in multiple files from excel in which some were to be read without skipping first row and some weren't, and I wanted to code this in how would I do it?
additional_read_param <- "skip = 1"
read_excel("mtcars.xlsx", sheet = 1, additional_read_param )
How do I actually get this to work?