Did you try the xlsx package?

install.packages("xlsx")
mydata <- read.xlsx("myfile.xls")

Not sure how well it handles HTML formatting.  Your best bet may be to just
save it as a tab-delimited text file and use the read.csv function.

mydata<- read.csv("myfile.txt", sep = "\t")



--
View this message in context: 
http://r.789695.n4.nabble.com/Unable-to-Import-xls-file-tp4725910p4725912.html
Sent from the datatable-help mailing list archive at Nabble.com.
_______________________________________________
datatable-help mailing list
[email protected]
https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/datatable-help

Reply via email to