s-news
[Top] [All Lists]

Re: bootstrapping of multiple datasets

To: Peng Huang <huangp@musc.edu>
Subject: Re: bootstrapping of multiple datasets
From: Tim Hesterberg <timh@insightful.com>
Date: 29 Jun 2006 17:33:04 -0700
Cc: s-news@lists.biostat.wustl.edu
In-reply-to: <44A4187B.8050303@musc.edu> (message from Peng Huang on Thu, 29 Jun 2006 14:14:19 -0400)
References: <6.0.1.1.2.20060616090403.01bcc0a8@email.med.yale.edu> <SE2KEXCH01jE5aHaZVr00000276@se2kexch01.insightful.com> <44A4187B.8050303@musc.edu>
>Hi Tim,
>
>How can we find a complete information about what libraries are 
>available and what routines are there within each library? Thanks!

Here are a few comments on
* what libraries are available
* how to find out what is in each library

--------------------------------------------------
Some libraries ship with S-PLUS.  You can get a list
of those, and one-line descriptions, by doing
        library()
from S-PLUS.

Other libraries are available at
        csan.insightful.com,
        www.insightful.com/downloads/libraries
        lib.stat.cmu.edu/S
        web sites of individuals, ...

If you are working on a system where someone else may have installed
libraries, you can see what libraries are installed by looking in the
library folder, e.g.
        c:/Program Files/Insightful/splus70/library     (Windows)
        ls `Splus SHOME`/library                        (Linux & Unix)

--------------------------------------------------
Some ways to find out about a library

# if the library is installed, using "missing" as an example
library(missing, help=T)  # overview of the library
library(missing)
objects(where = "missing") # list of routines and datasets in the library

Manual, e.g.
        library/missing/missing.pdf

Help files; on Windows, for a library that is not
loaded by default when you start S+, these should be in a .chm document,
e.g.
        library/missing/missing.chm
In addition to help for individual functions, this may have pages
that give an overview of the library, help on the GUI for a library
if it has one, etc.

Libraries may have other documentation; e.g. the resample library
has a "doc" folder

--------------------------------------------------
Hope this helps.

Tim Hesterberg

========================================================
| Tim Hesterberg       Research Scientist              |
| timh@insightful.com  Insightful Corp.                |
| (206)802-2319        1700 Westlake Ave. N, Suite 500 |
| (206)283-8691 (fax)  Seattle, WA 98109-3044, U.S.A.  |
|                      www.insightful.com/Hesterberg   |
========================================================
Download the S+Resample library from www.insightful.com/downloads/libraries


<Prev in Thread] Current Thread [Next in Thread>