close
The Wayback Machine - https://web.archive.org/web/20201229101022/https://github.com/dlab-berkeley/advanced-data-wrangling-in-R
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Advanced Data Wrangling Workshop in R

by Jae Yeon Kim

File an issue if you have problems, questions or suggestions.

Overview

The Advanced Data Wrangling Workshop aims to help students to learn powerful tools and techniques in R to wrangle data with less pain and more fun. The workshop will show how R can make your data wrangling process easier, faster, and more readable. The workshop focuses on introducing new developments in the tidyverse, particularly dplyr 1.0.0, and it has something new and exciting even for experienced R users.

Learning objectives

Prerequisites

I assume students have familiarity with the tidyverse packages.

Setup

I strongly recommend to launch Binder. Please do so before attending the worskshop as it takes a while (especially, if you do it for the first time).

Or you can setup manually:

  • Check your dplyr package is up-to-date by typing packageVersion("dplyr").
  • If the current installed version is less than 1.0.0, then update it by typing update.packages("dplyr"). You may need to restart R to make it work.

ifelse(packageVersion("dplyr") > 1, 
  print("The installed version of dplyr package is greater than or equal to 1.0.0"), 
  update.packages("dplyr")
  )

Image This work is licensed under a Creative Commons Attribution 4.0 International License.

About

Advanced-data-wrangling-in-R, Workshop

Topics

Resources

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.