Skip to content
yihui edited this page Oct 3, 2011 · 32 revisions

cranvas Wiki

Installation

source("http://www.bioconductor.org/biocLite.R")
biocLite(c('qtbase', 'qtpaint'))
  • otherwise just use the code below
## install dependency from CRAN
install.packages(c('scales', 'tourr', 'objectSignals', 'maps'))

## install other dependencies from GitHub
if (!require('devtools')) install.packages('devtools')  # needs Curl for RCurl
library(devtools)
pkgs <- list(hadley = c('productplots', 'densityvis'), ggobi = c('plumbr', 'qtbase', 'qtpaint', 'cranvas'))
for (repo in names(pkgs)) {
  for (pkg in pkgs[[repo]]) install_github(pkg, repo)
}

Common Features

Specific Functions

For Developers

Misc

Clone this wiki locally