Skip to content
Xiaoyue Cheng edited this page Oct 3, 2013 · 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)
## For Ubuntu or Mac, it takes a few minutes to install qtbase, but you do not need to reinstall it every time
## Do NOT run the next line if you use WINDOWS!
install_github('qtbase', 'ggobi'); install_github('qtpaint', 'ggobi')

install.packages(c('scales', 'tourr', 'objectSignals', 'objectProperties', 'plumbr','SearchTrees')) # 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