Computer Science Canada R Review and Recommendation |
Author: | btiffin [ Wed Apr 16, 2008 10:09 pm ] | |||||||||||
Post subject: | R Review and Recommendation | |||||||||||
R is a full featured and very mature Statistical Computing environment R-project.org An array processor, R takes large or small datasets and provides a plethora of analytical options. Based on S-Lang, R is completely GNU, meaning completely free. A well organized Comprehensive R Archive Network provides tools for users and developers, accessible directly from R scripts or the R console. Plotting is an important feature of the system and cross-platform is well supported across GNU/Linux, Mac OS/X and Windows.
Matrices are handled easily, mixing string or factor and numerics in human friendly ways, or highly efficient binary forms. Reading tables, R, will examine the form and properly align column headings included in the input with the associated rows of data. Given houses.dat as a text file (dataset)
and evaluating
you will have a nice matrix loaded and ready to analyze. Note that here, each row comes with a record number. For loading without row labels, use
Many, many type of plots including entire packages that make dealing with lat, long and elevation data a breeze. Plotting a nice battle field image with texturing, is fairly straight forward in R. A sample contour with perspective plot;
(code from the R wiki at AddictedToR There is a large community of contributed scripts in the CRAN. Hundreds of sample datasets ship with R and access starts with a simple listing using R> data(). Part of this data being the Maunga Whau volcano elevation information shown here. A serious number cruncher. Recommended for anyone involved with game theory, geophysical, data mining, statistical analysis, biology, fiscals, school, and so many others fields I'll stop now. Along with Python, R might make a nice C.V. entry on a job application to Google. Plus, here is a little bit of cool; Cube Cheers And the main link once again; R-project.org |