LeBauer:Software/Statistics: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
Line 47: Line 47:
**Document -> Settings -> Document Class -> article (Sweave noweb)
**Document -> Settings -> Document Class -> article (Sweave noweb)


==JAGS==
=====Installing JAGS=====
1. download the file
<pre>
wget http://sourceforge.net/projects/mcmc-jags/files/JAGS/2.x/Source/JAGS-2.2.0.tar.gz
</pre>
2. unpack the gzipped file
<pre> tar xvfz  JAGS-<version>.tar.gz</pre>
3. change directory to folder with unpacked JAGS files
<pre> cd JAGS-<version></pre>
4. Run configuration file to check system and set system dependent variables


*optional, for consistency with the ebi-forecast and ebi-cluster servers: include the --prefix=/usr/ to specify JAGS install location, /usr/ is default on Red Hat, which runs the ebi-forecast server but /usr/local/ is the default installation folder on Ubuntu, so --prefix=/usr/ is required when installing on Ubuntu to mirror Red Hat.
<pre> ./configure --prefix=/usr</pre>
5. build program
<pre> make</pre>
6.  install (requires root access)
<pre> sudo make install</pre>
7. remove files no longer needed after installation
<pre> make clean
cd ..
rm -rf JAGS-<version> </pre>
=====Specific Code for JAGS version 2.1.0=====
<pre>
wget http://www-ice.iarc.fr/~martyn/software/jags/JAGS-2.1.0.tar.gz
tar xvfz  JAGS-2.1.0.tar.gz
cd JAGS-2.1.0/
./configure --prefix=/usr
make
sudo make install
make clean
cd ..
rm -rf JAGS-2.1.0
</pre>
=====Installing Jags packages (rjags and R2jags) in R=====
<pre>
wget http://cran.r-project.org/src/contrib/R2jags_0.01-26.tar.gz
sudo R CMD INSTALL R2jags_0.01-26.tar.gz
wget http://cran.r-project.org/src/contrib/rjags_1.0.3-11.tar.gz
sudo R CMD INSTALL rjags_1.0.3-11.tar.gz
</pre>


==Kepler==
==Kepler==

Revision as of 09:46, 10 November 2010


<html> <script type="text/javascript">

 var _gaq = _gaq || [];
 _gaq.push(['_setAccount', 'UA-3103850-6']);
 _gaq.push(['_trackPageview']);
 (function() {
   var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
   ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
   var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
 })();

</script> </html>

R

public R packages

  • ggplot2 simplifies graphical data visualization and presentation
  • coda tools for analysis of mcmc chains
  • randtoolbox has function for generating pseudo-random samples; the halton() function produces a pseudo-random over-dispersed matrix that I use to sampling from the distributions of ~20 parameters used in ensemble runs of the ED2 ecosystem model.
  • adimpro for image analysis
##example R code for extracting jpg to N x M x 3 matrix
##much slower than Matlab imread()
a <- read.image('file.jpg')
b <- extract.image(a)
red   <- b[,,1]
green <- b[,,2]
blue  <- b[,,3]

Custom R packages

See the Writing R Extensions guides for more information.

Latex and Sweave

LaTeX plus Sweave facilitate documentation and reproduction of statistical analyses. I generally use Sweave and Latex in emacs, but I also find Lyx useful in some cases, and the learning curve is easier using the Lyx interface to Latex.

Lyx and Sweave

useful links: lyx sweave repository R news article about Lyx and Sweave

sudo apt-get install lyx
cd ~./lyx
wget http://cran.fhcrc.org/contrib/extra/lyx/preferences
cd layouts
wget http://cran.fhcrc.org/contrib/extra/lyx/literate*
wget http://cran.fhcrc.org/contrib/extra/lyx/literate-article.layout
wget http://cran.fhcrc.org/contrib/extra/lyx/literate-book.layout
wget http://cran.fhcrc.org/contrib/extra/lyx/literate-report.layout
wget http://cran.fhcrc.org/contrib/extra/lyx/literate-scrap.inc
cd ~/texmf/tex
wget http://www.biostat.jhsph.edu/~rpeng/ENAR2009/Sweave.sty
  • start Lyx
    • Preferences -> Reconfigure
  • restart Lyx
    • File -> new
    • Document -> Settings -> Document Class -> article (Sweave noweb)


Kepler

Kelper project homepage

download Kepler

wget https://code.kepler-project.org/code/kepler/releases/installers/2.0/Kepler-2.0-linux.jar
Kepler-2.0-linux.jar

follow the instructions to install Kepler, if installation does not begin, double-click on the file

after installation, to use mysql with Open Database Connection actor, may need to download jar file for jdbc java connection

wget http://www.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.13.tar.gz/from/ftp://mirror.anl.gov/pub/mysql/
tar -zxf mysql-connector-java-5.1.13.tar.gz
cp mysql-connector-java-5.1.13/mysql-connector-java-5.1.13-bin.jar Kepler-2.0/