/ Published in: R
URL: http://www.statmethods.net/input/importingdata.html
Expand |
Embed | Plain Text
# first row contains variable names # we will read in workSheet mysheet library(RODBC) channel <- odbcConnectExcel("c:/myexel.xls") mydata <- sqlFetch(channel, "mysheet") odbcClose(channel)
You need to login to post a comment.
