I have poorly-formatted CSV files imported as large list elements then rbind into a dataframe. Trying to inspect the elements of this large list in RStudio 1.0.143 (Windows 10 Pro), the following commands all result in 200 lines output to Console:
head(ldf[1],10)
head(ldf[1])
head(ldf[1],10L)
head(ldf[2],10L)
head(ldf[2],9)
head(ldf[2],n = 9L)
At the end of this output will be a statement like:
[ reached getOption("max.print") -- omitted 5944 rows ]
Why is the integer argument being ignored? Does it matter that I have loaded the tidyr package?