February 2015

Geomorph update 2.1.3 Now Available!

February 17, 2015 | Emma Sherratt

Geomorph users,We have uploaded version 2.1.3 to CRAN. The windows and mac binaries have been compiled and the tarball is available.NOTE: Version 2.1.3 has a small bug in readland.tps()that unfortunately slipped through the cracks. So yo... [Read more...]

Reading Arduino data directly into R

February 17, 2015 | Markus Gesmann

I have experimented with reading an Arduino signal into R in the past, using Rserve and Processing. Actually, it is much easier. I can read the output of my Arduino directly into R with the scan function. Here is my temperature sensor example again:And all it needs to read ...
[Read more...]

Introducing js: tools for working with JavaScript in R

February 16, 2015 | Jeroen Ooms

A new package has appeared on CRAN called js. This package implements bindings to several popular JavaScript libraries for validating, reformating, optimizing and analyzing JavaScript code. It builds on the V8 engine, the fully standalone JavaScript engine in R. Syntax Validation Several R packages allow the user to supply JavaScript ...
[Read more...]

An R tutorial for Microsoft Excel users

February 16, 2015 | David Smith

If you currently use a spreadsheet like Microsoft Excel for data analysis, you might be interested in taking a look at this tutorial on how to transition from Excel to R by Tony Ojeda. The tutorial explains how to use R functions in place of Excel formulas, including tools like =... [Read more...]

SAS to R Migration

February 16, 2015 | Liz Matthews

By Andy Nicholls, Head of Consulting (UK) Why do it? Mango has been involved in an increasing number of engagements where customers are seeking to migrate from SAS to R.  There are a number of different business drivers for these … Continue reading → [Read more...]

Mapping the world with tweets

February 16, 2015 | Sascha W.

A few days ago, I collected 30 minutes of tweets all around the world. I used the twitteR and streamR packages for this. The nice thing about those tweets is that they have geo-information associated with them. Not all of them, of course, but more than enough.Let's see, what happens ...
[Read more...]

12 nifty tips for scientists who use computers

February 16, 2015 | Petr Keil

Simple things are good. Here is a list of 12 things that I find simple and useful, yet not many of my colleagues use them. The list is R-biased. Knitr. Intuitive tool to integrate R and text to make reports with fancy fonts, figures, syntax-highlighted R code and equations. If … Continue ... [Read more...]

How-to go parallel in R – basics + tips

February 16, 2015 | Max Gordon

Today is a good day to start parallelizing your code. I've been using the parallel package since its integration with R (v. 2.14.0) and its much easier than it at first seems. In this post I'll go through the basics for implementing parallel computations in R, cover a few common pitfalls, ... [Read more...]

pacman 0.2.0: Initial CRAN Release

February 16, 2015 | tylerrinker

We’re please to announce the first CRAN release of pacman v. 0.2.0. pacman is the combined work of Dason Kurkiewicz & Tyler Rinker. pacman is an R package management tool that combines the functionality of base library related functions into intuitively … Continue reading →
[Read more...]

Minimist: an example of writing native JavaScript bindings in R

February 15, 2015 | Jeroen Ooms

A new package has appeared on CRAN called minimist, which implements an interface to the popular JavaScript library. This package has only one function, used for argument parsing. For example in RGui on OSX, the output of commandArgs() looks like this:
<span>></span> <span>commandArgs</span><span>()</span>
<span>[</span><span>1</span><span>]</span> <span>"R"</span>                 <span>"--no-save"</span>         <span>"--no-restore-data"</span> <span>"--gui=aqua"</span>
Minimist turns that into this:
<span>></span> <span>library</span><span>(</span>minimist<span>)</span>
<span>></span> minimist<span>(</span><span>commandArgs</span><span>())</span>
<span>$</span><span>`_`</span>
<span>[</span><span>1</span><span>]</span> <span>"R"</span>

<span>$</span><span>save</span>
<span>[</span><span>1</span><span>]</span> <span>FALSE</span>

<span>$</span><span>`restore-data`</span>
<span>[</span><span>1</span><span>]</span> <span>FALSE</span>

<span>$</span>gui
<span>[</span><span>1</span><span>]</span> <span>"aqua"</span>
Note how ...
[Read more...]

Testing for Multivariate Normality

February 15, 2015 | Dave Giles

The assumption that multivariate data are (multivariate) normally distributed is central to many statistical techniques. The need to test the validity of this assumption is of paramount importance, and a number of tests are available.A recently released R package, MVN, by Korkmaz et al. (2014) brings together several of these ... [Read more...]
1 3 4 5 6 7 11

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)