18 courses to learn R in 2018

Do you want to learn or get better at R programming?  If yes, you will love the list below. I have compiled a list of free and paid R programming courses. Most of them are online and free, so NO excuses about location or money to uplift your skills. The list includes courses for ALL […]

Using R to predict if a customer will buy

In this post, I’ll show how to create a simple model to predict if a customer will buy a product after receiving a marketing campaign. Before I get into the example, I’ll briefly explain the basics about the model I’ll use (Logistic Regression). As shown in the image below, you want a model (function) that […]

Data Science for Beginners

Are you wondering what’s all this buzz about data science? The following videos will give you a good introduction to data science. Use the links below to go to each video: Problems solved by data science Data Quality Question/Problem Quality Example of linear regression model    Problems solved by data science   The first video […]

Creating animations from ggplot2 plots

Note: This post was published on February 14th (Valentine’s day) First things first, Marioly, thanks for being a loving wife and an exceptional mother. Here’s an infinite love animation for you: In this post I’ll show you to use the gganimate package from David Robinson to create animations from ggplot2 plots. The animation shown above is […]

Attend the R User Conference 2016 – Online

The R User Conference is one of the biggest R conferences around the world. It will be held at Stanford University during Jun 27 – 30, 2016. The conference is full already, however, if you want to see the presentations online you’ll be able to do so through the next link: Watch Presentations Online  The […]

16 courses to learn R in 2016

Do you want to learn or get better at R programming?  If yes, you will love the list below. I have compiled a list of free and paid R programming courses. Most of them are online and free, so NO excuses about location or money to uplift your skills. The link in the Description column […]

RStudio Essentials Webinar Series

Have you used RStudio? If you have, you probably know this is one of the best Integrated Development Environments for R. If you haven’t used RStudio yet, check out this video: RStudio, Inc. provides open source and licensed versions of RStudio. You can check the details here. The purpose of this post was to let […]

Working with files and folders in R

In this post I’ll cover how to work with files and folders in R. Working with the current directory Unless you specify it otherwise, all files will be read and saved into the working directory. Therefore, the first thing you need to know is how to get and setup your working directory. [code lang=”r”] #Get […]