HowTo/UsingVignettes: Difference between revisions

From Comparative Phylogenetics in R
Jump to navigation Jump to search
No edit summary
 
(No difference)

Revision as of 15:25, 6 February 2008

UNDER CONSTRUCTION!

Vignettes are package tutorials that contain both narrative descriptions for how to perform an analysis as well as working code snippets.

To list available vignettes, type

> vignette()

To see a specific vignette, type, for example,

> vignette("grid")

You can extract the R code from a vignette by typing

> vigSrc = list.files(pattern="Rnw$",
                   system.file("doc",package="GOstats"),
                   full.names=TRUE)
> vigSrc
> for (v in vigSrc) Stangle(v)