I am working in RStudio with R version 2.15.1. I saved an Excel file in CSV file and imported that to R
(with the read.csv()
function). When I do dim(file)
, I got:
[1] 4920 23
But when I tried to retrieve the very first element with file[1:1]
, I got the entire first column!
Why is that?