March 2014

Developer snapshots of #sjPlot-package now on #Github #rstats

March 8, 2014 | Daniel

Finally, I managed to setup a GitHub repository. From now on, the latest developer snapshot of my sjPlot-package will be published right here: https://github.com/sjPlot/devel. Please post issues there, download the latest developer build for testing purposes or help developing the wiki-page with examples for package usage ... [Read more...]

A Hack to Create Matrices in R, Matlab style

March 7, 2014 | Rasmus Bååth

The Matlab syntax for creating matrices is pretty and convenient. Here is a 2x3 matrix in Matlab syntax where , marks a new column and ; marks a new row:
<div><pre>[<span>1</span>, <span>2</span>, <span>3</span>;
 <span>4</span>, <span>5</span>, <span>6</span>]
</pre></div>
Here is how to create the corresponding matrix in R:
<div><pre>matrix(c(<span>1</span>,<span>4</span>,<span>2</span>,<span>5</span>,<span>3</span>,<span>6</span>), <span>2</span>, <span>3</span>)
</pre></div>
<div><pre><span>##      [,1] [,2] [,3]</span>
<span>## [1,]    1    2    3</span>
<span>## [2,]    4    5    6</span>
</pre></div>
Functional but not as pretty, plus the default is ... [Read more...]

R 3.0.3 is now available

March 7, 2014 | David Smith

R-core member Peter Dalgaard announced yesterday that R 3.0.3 is now available. This is the final update to the R 3.0 series, and includes several small but handy new features and minor bug fixes. Improvements include support for writing very large tables to disk, better handling of foreign-language calendar dates, and more ... [Read more...]

Advances in scalable Bayesian computation [day #4]

March 7, 2014 | xi'an

Final day of our workshop Advances in Scalable Bayesian Computation already, since tomorrow morning is an open research time ½ day! Another “perfect day in paradise”, with the Banff Centre campus covered by a fine snow blanket, still falling…, and making work in an office of BIRS a dream-like moment. Still ... [Read more...]

Using R: common errors in table import

March 6, 2014 | mrtnj

I’ve written before about importing tabular text files into R, and here comes some more. This is because I believe (firmly) that importing data is the major challenge for beginners who want to analyse their data in R. What is the most important thing about using any statistics software? ... [Read more...]

Poverty and Crime in Mexico – Interactive Map

March 6, 2014 | Jose

How safe is Mexico? That is a frequent question people ask me. There is even  website about it  (see this blog post). So I’ve decided it was time to go one step further and make an interactive map (click here for full screen) of poverty and crime in Mexico. ... [Read more...]

Getting Started with Hidden Markov Models in R

March 6, 2014 | Joseph Rickert

by Joseph Rickert In addition to the considerable benefit of being able to meet other, like-minded R users face-to-face, R user groups fill a niche in the world of R education by providing a forum for communicating technical information in an informal and engaging manner. Conferences such as useR!, JSM ... [Read more...]

Advances in scalable Bayesian computation [day #3]

March 6, 2014 | xi'an

We have now gone over the midpoint of our workshop Advances in Scalable Bayesian Computation with three talks in the morning and an open research or open air afternoon. (Maybe surprisingly I chose to stay indoors and work on a new research topic rather than trying cross-country skiing!) If I ... [Read more...]

Near-zero variance predictors. Should we remove them?

March 6, 2014 | thiagogm

Datasets come sometimes with predictors that take an unique value across samples. Such uninformative predictor is more common than you might think. This kind of predictor is not only non-informative, it can break some models you may want to fit to your data (see example below). Even more common is ... [Read more...]

Assign n Email Addresses to x Cells, Intrinsically

March 5, 2014 | The Clerk

Assign n Email Addresses to x Cells, Intrinsically Assign n Email Addresses to x Cells, IntrinsicallySample Use Case:Marketing requests that an email address list be divided randomly into a given number of cells so that each cell would receive a different version of copy. Below is a technique that ... [Read more...]

A simple R bootstrap function for beginners

March 5, 2014 | Robert

I teach some introductory stats classes with SPSS, and one of the frustrations for me is that you have to pay an extra wad of cash to do any bootstrapping. It’s not exactly the complete analysis solution that you might … Continue reading → [Read more...]

Advances in scalable Bayesian computation [day #2]

March 5, 2014 | xi'an

And here is the second day of our workshop Advances in Scalable Bayesian Computation gone! This time, it sounded like the “main” theme was about brains… In fact, Simon Barthelmé‘s research originated from neurosciences, while Dawn Woodard dissected a brain (via MRI) during her talk! (Note that the BIRS ... [Read more...]
1 10 11 12 13 14 15

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)