tidyr is an evolution of reshape2. It’s design specifically for data tidying (not general reshaping or aggregating) and works well with dplyr data pipelines.
Not on CRAN yet so install via
devtools::install_github("hadley/tidyr")
library(tidyr)
Provides a mechanism for chaining commands with a new forward-pipe operator. Ceci n’est pas un pipe.
This is a post from the most understated package definition of the year department. magrittr
is, much like every Scheme library ever, deceptively simple in its power and ease of use that it provides.
The README, API documentation, and vignette are really, really great, too. Be sure to grok the order-of-evaluation when you’ve got normal functions on the right-hand-side.
The common goal humans undertake is to reinvent themselves.
Don’t!
You were sent to this Earth perfect.
Abandon all the limiting ideas about yourself that you invented during your time
here so that you may return to the perfect human being that you truly are.
De-invent don’t re-invent!
A wealth of information creates a poverty of attention.
— Herbert Simon
Via EMR.
EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs. The EditorConfig project consists of a file format for defining coding styles and a collection of text editor plugins that enable editors to read the file format and adhere to defined styles. EditorConfig files are easily readable and they work nicely with version control systems.
Via rapporter.
littler provides the r program, a simplified command-line interface for GNU R. This allows direct execution of commands, use in piping where the output of one program supplies the input of the next, as well as adding the ability for writing hash-bang scripts, i.e. creating executable files starting with, say, #!/usr/bin/r.
Wonderful, wonderful to know that this exists as it fills a definite void.
Via Dirk Eddelbuettel.
The purpose of this Meetup is to provide a safe, pleasant, and convenient venue (physical and virtual) to facilitate the growth and nurturing of the Data Science community in Southeastern Wisconsin.
Since Data Science covers the entirety of all human endeavors, this group serves to facilitate dialogue and discussion between all realms of mastery. Strategic advisers, managers, investors, health-care administrators, and quantitative analysts will feel equally at home here, as will mathematicians, statisticians, ecologists, biologists, and social-scientists. All realms of mastery are invited and welcomed to join.
Given the limitless application of technology here, all members of the Information Technology field are welcomed to join. All roles are welcome ranging from technical (developers, architects, system and devops administrators) to project managers and business analysts.
Experts and neophytes with interest in particular languages, environments, frameworks, and technologies have a home here. Be it R, Python, Java, or Octave, there is a place for everyone to learn and share. Our doors are equally open to practitioners applying specific technological offerings for every industry and platform.
With a laid back approach open to all ideas, this group will reflect the contributions and participation of its members, in whatever form time and resources permit.
Key links:
In my words this is how to debug within R:
traceback
browser
debug
browser
recover
trace