If you check ?library, you will see that the package argument only takes one
packages. So your code was like saying library(package=RODBC, help=boot)
which does not make sense...but which would indeed load RODBC and not boot.
That is why your problem occurred and why your solution worked.
--Adam
Changing
library(RODBC,boot)
to
library(RODBC)
library(boot)
seems to have solved the problem.
_
_
From: Gary Smith [mailto:gary.smit...@comcast.net]
Sent: Saturday, January 31, 2009 12:55 PM
To: 'r-help@R-project.org'
Subject:
2 matches
Mail list logo