JUMPING RIVERS BLOG
We help our clients move from data storage to data insights.
Animating the Premier League using gganimate
r, tidyverse, ggplot2, gganimate, dplyr, football, premier league
|Ever wonder what an evolving gif of each premier league team’s goal difference vs points would look like made in R? Look no further! Most of this is going to be setting up the data (as always) instead of actually plotting the data. To get the data into shape, we're going to be using the
Podcast recommendations
r, podcasts, datascience
|Anyone who has a long commute or who has to travel with work knows the importance of podcasts. Podcasts allow you turn otherwise useless time, into something both productive and interesting. In this blog post, we'll describe some of our favourite podcasts. This list isn't meant to be exhaustive, it's just what we are currently
Styling ggplot2 Graphics
r, graphics, ggplot2
|Styling ggplot2 graphics In our previous post, we demonstrated that contrary to popular opinion, it is possible to generate attractive looking plots using just base graphics. Although we did confess, that it did take a lot of time and effort. In this post, we repeat the same exercise. Using the dreaded iris data set, we’ll
Why R 2018 Winners
r, competition, typeform, sample, questionnaire
|So it’s here… After lots of entries (147 to be precise), we can finally announce the winner of the WhyR 2018 Competition! But first, we have to tell you quickly about how we picked the winner. How we did it So it really wasn’t that hard. We held the questionnaire on typeform. Conveniently, my colleague has
Competition: WhyR 2018
r, competition
|The competition It’s competition time! We’re sponsoring Why R? 2018 Conference. The conference runs from the 2-5th of July in Wroclaw, Poland and us nice folks here at Jumping Rivers are giving away a free ticket to the conference! The competition To enter your name into the prize draw all you have to do is
R Courses in Hamburg
r, tidyverse, intro, mastering, stats, modelling, predictive, analytics, automate, reporting
|Big news, from the 13th till the 27th June Jumping Rivers will be running 6 courses on R in Hamburg!!. It should be noted that each course runs for one day, apart from the Predictive Analytics course, which runs for 2 days. The courses are as follows: Introduction to R - 13th For this course,
The Water Hub Hackathon; We won!
r, shiny, waterhub, hackathon, API
|Well well well, we’ve only gone and won The Water Hub hackathon! Well, joint winners but the main word is WINNER. First of all we want to say thank you to all the guys at the Water Hub and the Sunderland Software Centre for organising and inviting. There was some tough competition there and we
eRum Competition Winners
r, tidyverse, conferences, eRum, useR, R-Ladies, groups, competition, shiny, data, cleaning, tidy, visualisation
|The Main Competition The Secondary Competition What next? The results of the eRum competition are in! Before we announce the winners we would like to thank everyone who entered. It has been a pleasure to look at all of the ideas on show. The Main Competition The winner of the main competition is Lukasz Janiszewski.
Regular Expressions Every R programmer Should Know
r, regex, regular, expression, stringr
|Regex: The backslash, \ Regex: The hat ,^, and dollar, $ Regex: Round parentheses,(), and the pipe, | Regex: Square parentheses,[], and the asterisk, * Regular expressions. How they can be cruel! Well we’re here to make them a tad easier. To do so we’re going to make use of the stringr package install.packages("stringr") library("stringr")