Skip to content
lehy edited this page May 15, 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('scales') # install scales from CRAN
pkgs <- list(hadley = c('productplots', 'densityvis'), 
             ggobi = c('tourr', 'objectSignals', 'objectProperties', 'plumbr', 'cranvas'))
for (repo in names(pkgs)) {
  for (pkg in pkgs[[repo]]) install_github(pkg, repo)
}
  • alternatively, for users with R >= 2.14.2, qtbase and qtpaint can be installed from CRAN
install.packages(c('qtbase', 'qtpaint'))

Common Features

Specific Functions

For Developers

Misc

Clone this wiki locally