I am using the following: 
library(RODBC)
chan = odbcConnectExcel("rats-lda")
rats.lda = sqlFetch(chan, "data")
close(chan) 

And getting the following error message:
> library(RODBC)
Error in library(RODBC) : there is no package called ‘RODBC’
> chan = odbcConnectExcel("rats-lda")
Error: could not find function "odbcConnectExcel"
> rats.lda = sqlFetch(chan, "data")
Error: could not find function "sqlFetch"
> close(chan) 



I am sure there is a simple answer to this.  Thanks.

--
View this message in context: 
http://r.789695.n4.nabble.com/Loading-the-stupid-dataset-help-tp4630585.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to