Reputation: 35
Warning message: In read.table("my_data.xls", header = T, sep = ";") : incomplete final line found by readTableHeader on 'my_data.xls'
> read.table("my_data.xls", header = T, sep = ";")
Upvotes: 0
Views: 177
Reputation: 2064
I would suggest use the readxl package. Not sure about the use of ";" as separator.
library(readxl)
df <- read_excel( "my_data.xls", col_names = TRUE )
Upvotes: 2