Skip to content

can't get package boot to load

2 messages · Gary Smith, Adam D. I. Kramer

#
Changing 
library(RODBC,boot)
to
	library(RODBC)
	library(boot)
seems to have solved the problem.

  _____
#
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
On Sat, 31 Jan 2009, Gary Smith wrote: