background preloader

R

Facebook Twitter

R documentation search - All R packages and R manuals from CRAN and Bioconductor. Bioconductor Code Search. R Resources » The R-Podcast. ‎www.stat.auckland.ac.nz/~paul/RGraphics/rgraphics.html. R Graphicsby Paul Murrell The SECOND EDITION of this book is now available, with its own web page. A book on the core graphics facilities of the R language and environment for statistical computing and graphics (Chapman & Hall/CRC, August 2005).

A link to the publisher's web page for the book. A list of Errata. PDF version of the preface, table of contents, and Chapters 1, 4, and 5. R code for figures: Chapter 1: An Introduction to R Graphics Chapter 2: Simple Usage of Traditional Graphics Chapter 3: Customising Traditional Graphics Chapter 4: Trellis Graphics: The Lattice Package Chapter 5: The Grid Graphics Model Chapter 6: The Grid Graphics Object Model Chapter 7: Developing New Graphics Functions and Objects Appendix A: A Brief Introduction to R Appendix B: Combining Traditional Graphics and Grid Graphics Extras: Some extra plots not in the book An R add-on package called "RGraphics" is available from CRAN. Figure 3.12 -- uses 'hjust' argument in grid.text() Highland Statistics Ltd. Jump straight to Price and Order the book Outline Keywords Table of Contents Data sets and R code used Video files Support chapters Discussion board Outline This book presents Generalized Linear Models (GLM) and Generalized Linear Mixed Models (GLMM) based on both frequency-based and Bayesian concepts.

The book uses the functions glm, lmer, glmer, glmmADMB, and also JAGS from within R. R code to construct, fit, interpret, and comparatively evaluate models is provided at every stage. Readers of this book have free access to: Chapter 1 of Zero Inflated Models and Generalized Linear Mixed Models with R. (2012a) Zuur, Saveliev, Ieno. See the Preface (and the text below) how to access the pdfs of these chapters. Keywords Table of contents Click for Table of contents Price and Order the book The paperback is priced at 49 GBP. Copyright statement This book is copyright material from Highland Statistics Ltd. Data sets and R code used in the book. Video file with general comments Alain Zuur Support chapters. PqR - a pretty quick version of R. Quick-R: Home Page.

Cookbook for R » Cookbook for R. Model visualisation. had.co.nz. This page lists my published software for model visualisation. This work forms the basis for the third chapter of my thesis. classifly: Explore classification boundaries in high dimensions. Given p-dimensional training data containing d groups (the design space), a classification algorithm (classifier) predicts which group new data belongs to. Generally the input to these algorithms is high dimensional, and the boundaries between groups will be high dimensional and perhaps curvilinear or multi-facted. Clusterfly: Explore clustering results in high dimensions. Typically, there is somewhat of a divide between statistics and visualisation software. There are also some custom methods for certain types of clustering, mostly inspired by the work of Dr Dianne Cook: Self organising maps (aka Kohonen neural networks), ? Meifly: Models explored interactively.

Installation Please make sure you have a current version of R and rggobi installed, then use the following R code: Presentations/publications. 10 tips for making your R graphics look their best. So you've spent hours slaving over the code for a beautiful statistical graphic in R, and now you're ready to show it to the world. You might be printing it, embedding it in a document, or displaying it on the web. Don't do your graph a disservice by causing it to look anything less than perfect in its final venue. Here are 10 tips to help make sure your graphic will always look best. 1. Call the right device driver from a script It's tempting to just create graphics to the on-screen device (such as X11 on Linux or Quartz on MacOS) and then just use "Save As... " from the menu.

The best practice is to create a script file that begins with a call to the device driver (usually pdf or png), runs the graphics commands, and then finishes with a call to dev.off(). Png(file="mygraphic.png",width=400,height=350)plot(x=rnorm(10),y=rnorm(10),main="example")dev.off() 2. If you plan to print your graphic, you want to use a vector-based format. 3. 4. 5. For PNG graphs, it's a bit tricker. Dev.off() 6. R and Data Mining. Juice Labs - Chart Chooser. Creating a Quick Report with knitr, xtable, R Markdown, Pandoc (and some OpenBLAS Benchmark Results) Welcome · Advanced R. Building an R Hadoop System - RDataMining.com: R and Data Mining. This page shows how to build an R Hadoop system, and presents the steps to set up my first R Hadoop system in single-node mode on Mac OS X.

After reading documents and tutorials on MapReduce and Hadoop and playing with RHadoop for about 2 weeks, finally I have built my first R Hadoop system and successfully run some R examples on it. Here I’d like to share my experience and steps to achieve that. Hopefully it will make it easier to try RHadoop for R users who are new to Hadoop.

Note that I tried this on Mac only and some steps might be different for Windows. Before going through the complex steps below, let’s have a look what you can get, to give you a motivation to continue. There is a video showing Wordcount MapReduce in R at Now let’s start. 1. 1.1 Download Hadoop Download Hadoop (hadoop-1.1.2-bin.tar.gz) at and then unpack it. 1.2 Set JAVA_HOME In conf/hadoop_env.sh, add the line below: 2. 3. 4. 5. Twotorials by anthony damico. Bioconductor Code Search. R Programming. Welcome to the R programming Wikibook This book is designed to be a practical guide to the R programming language[1]. R is free software designed for statistical computing.

There is already great documentation for the standard R packages on the Comprehensive R Archive Network (CRAN)[2] and many resources in specialized books, forums such as Stackoverflow[3] and personal blogs[4], but all of these resources are scattered and therefore difficult to find and to compare. The aim of this Wikibook is to be the place where anyone can share his or her knowledge and tricks on R. It is supposed to be organized by task but not by discipline[5]. We try to make a cross-disciplinary book, i.e. a book that can be used by all people applying statistics to some specific fields. How can you share your R experience ? Some rules : Prerequisites[edit] We assume that readers have a background in statistics. See also[edit] References[edit] Cookbook for R » Cookbook for R. Developers:projects:gsoc2012:ropensci. Summary: Dynamic access and visualization of scientific data repositories Description: rOpenSci is a collaborative effort to develop R-based tools for facilitating Open Science.

Projects in rOpenSci fall into two categories: those for working with the scientific literature, and those for working directly with the databases. Visit the active development hub of each project on github, where you can see and download source-code, see updates, and follow or join the developer discussions of issues. Most of the packages work through an API provided by the resource (database, paper archive) to access data and bring it within reach of R’s powerful manipulation. See a complete list of our R packages currently in development. The student could choose to work on a package for a particular data repository of interest, or develop tools for visualization and exploration that could function across the existing packages. Summer 2010 — R: ggplot2 Intro. Contents Intro When it comes to producing graphics in R, there are basically three options for your average user. base graphics I've written up a pretty comprehensive description for use of base graphics here, and don't intend to extend beyond that.

Base graphics are attractive, and flexible, but when it comes to creating more complex plots, like this one, the code to create it become more cumbersome. Both and make creating plots of multivariate data easier. However, I find it easier to create customized and novel plots with than , and its syntax is more sensible to me. The website for ggplot2 is here: Basics is meant to be an implementation of the Grammar of Graphics, hence gg-plot. Plots convey information through various aspects of their aesthetics. X position y position size of elements shape of elements color of elements The elements in a plot are geometric shapes, like points lines line segments bars text Layer by Layer Displaying Statistics.

RStudio Server Amazon Machine Image (AMI) - Louis Aslett. Current AMI Quick Reference (27nd Jun 2015)Amazon instance type reference Click to launch through AWS web interface: What’s new recently? Easy Dropbox setup to make syncing files on/off server easy, including selective folder sync. Preinstalled RStudioAMI R package for server control. HVM AMIs for full current generation instance support. Defaults to high speed SSD drives (faster, zero IO costs, only $1pm in most regions). < Back to homepage Amazon’s EC2 platform provides a convenient environment for rapidly procuring computational resources in the cloud. To get started with the Amazon cloud, you must first signup for an AWS account if you don’t already have one. Click here for a simple video guide to using the AMIs listed here, or for more detailed information read on.

What is this? If you want to run a server in the Amazon cloud, you have to select what system you are going to bootup. In particular, many common tools and dependencies are built-in. Why an RStudio AMI? AMI Release History. Learning R. Show posts - BioStar. Book. Github:help. R Reference Card.

R blogs and forums

R packages. Packages sources. Resources to help you learn and use R. R - Getting Started in Data Analysis - Princeton LibGuides at Princeton University.