-
Notifications
You must be signed in to change notification settings - Fork 12
Home
lehy edited this page May 15, 2012
·
32 revisions
- Instructions on installing Qt under different operating systems.
- Install the
cranvas
package- install all packages from GitHub using the
devtools
package
- install all packages from GitHub using the
## 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
andqtpaint
can be installed from CRAN
install.packages(c('qtbase', 'qtpaint'))
- http://imgur.com is a nice place to upload images
- http://vimeo.com for videos (Hadley has a pro account if you need to upload something big)