Skip to content
Prev 688 / 1559 Next

RODBC: probs with arg

Try reading in the headings and data separately like this
(shown with read.xls from gdata):

library(gdata)
DF <- read.xls("bikes.xls", skip = 3, header = FALSE,
    col.names = names(read.xls("bikes.xls", skip = 1, nrows = 1)))


On Fri, Jul 17, 2009 at 8:47 AM, Matthieu
Stigler<matthieu.stigler at gmail.com> wrote: