Skip to content
heike edited this page Sep 20, 2012 · 32 revisions

cranvas Wiki

Installation

## use devtools to install other dependencies from GitHub
if (!require('devtools')) install.packages('devtools')  # needs Curl for RCurl
library(devtools)
## it takes a few minutes to install qtbase, but you do not need to reinstall it every time
install_github('qtbase', 'ggobi'); install_github('qtpaint', 'ggobi')

install.packages(c('scales', 'tourr', 'objectSignals', 'objectProperties', 'plumbr')) # install scales from CRAN
pkgs <- list(hadley = c('productplots', 'densityvis'))
for (repo in names(pkgs)) {
  for (pkg in pkgs[[repo]]) install_github(pkg, repo)
}
## and finally cranvas:
install_github('cranvas', 'ggobi', args="--no-multiarch")

Common Features

Specific Functions

For Developers

Misc

Clone this wiki locally