-
Notifications
You must be signed in to change notification settings - Fork 8
Install on Windows
Installing iNZight on Windows is very straightforward. You just need to install the necessary packages (and their plethora of dependencies), and GTK (we'll get to this).
DISCLAIMER: iNZight has been developed as a GUI tool targeted towards non-experts (and in fact complete beginners), so the time put into making it a nice, well structured and valid R package has been minimal. You might need to tweak these instructions to suit your setup.
We have our own repository hosting all of our iNZight*
packages (and a few others). To add this, use the following:
options(repos = c('your_favourite_CRAN_mirror',
'http://r.docker.stat.auckland.ac.nz/R'))
If you don't have a favourite, you can use the RStudio one: http://cran.rstudio.com
.
All you need to do is run this command, and everything should take care of itself:
install.packages(c('iNZight', 'iNZightPlots', 'iNZightMR',
'iNZightRegression', 'iNZightTS', 'iNZightModules',
'iNZightTools', 'vit'))
Leave off vit
if you don't want that.
If you only want the basic iNZight, then you should be safe with ...
install.packages('iNZight')
... but you might need to debug any missing dependencies.
Run
library(RGtk2)
and you should be presented with a prompt to install the GTK libraries. You only need to do this once.
If that went according to plan, you can launch iNZight using:
library(iNZight)
iNZight()
Have fun!
This wiki can only be modified by authorised users actively involved in the project. If you would like to contribute (such as installation instructions for an OS), just create an issue with the label "Wiki Suggestion" and write up in full Markdown. We'll check it and if we're happy we'll add it. And you'll be cited as the author.