Sigmoid Function
Sigmoid Function

Reputation: 35

Can not read the tables of excel sheets in R

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

Answers (1)

woshishui
woshishui

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

Related Questions