Skip to content
Prev 31660 / 398506 Next

Questons about R capabilities

On Tue, 06 May 2003 15:27:20 -0400, you wrote in message
<seb7d46c.048 at healthsmtp.nycnet>:
I don't think that's built in, but it's always worth looking at the
contributed packages on cran.r-project.org just in case.  There are
general purpose likelihood maximizers (nlm, optim).
When the help says "mvrnorm(MASS)", that means that the function is in
the package called "MASS".  You need to execute

 library(MASS)

to get that function loaded onto the search path.  You can see which
packages are already there by executing

 search()

Duncan Murdoch