All Projects → dlab-berkeley → advanced-data-wrangling-in-R-legacy

dlab-berkeley / advanced-data-wrangling-in-R-legacy

Licence: other
Advanced-data-wrangling-in-R, Workshop

Programming Languages

HTML
75241 projects

Projects that are alternatives of or similar to advanced-data-wrangling-in-R-legacy

Moderndive book
Statistical Inference via Data Science: A ModernDive into R and the Tidyverse
Stars: ✭ 527 (+3664.29%)
Mutual labels:  dplyr, tidyverse, data-wrangling
Timetk
A toolkit for working with time series in R
Stars: ✭ 371 (+2550%)
Mutual labels:  dplyr, tidyverse
Tidy
Tidy up your data with JavaScript, inspired by dplyr and the tidyverse
Stars: ✭ 307 (+2092.86%)
Mutual labels:  dplyr, tidyverse
Tidyquant
Bringing financial analysis to the tidyverse
Stars: ✭ 635 (+4435.71%)
Mutual labels:  dplyr, tidyverse
casewhen
Create reusable dplyr::case_when() functions
Stars: ✭ 64 (+357.14%)
Mutual labels:  dplyr, tidyverse
eeguana
A package for manipulating EEG data in R.
Stars: ✭ 16 (+14.29%)
Mutual labels:  dplyr, tidyverse
Tidylog
Tidylog provides feedback about dplyr and tidyr operations. It provides wrapper functions for the most common functions, such as filter, mutate, select, and group_by, and provides detailed output for joins.
Stars: ✭ 428 (+2957.14%)
Mutual labels:  dplyr, tidyverse
parcours-r
Valise pédagogique pour la formation à R
Stars: ✭ 25 (+78.57%)
Mutual labels:  dplyr, tidyverse
R4ds Exercise Solutions
Exercise solutions to "R for Data Science"
Stars: ✭ 226 (+1514.29%)
Mutual labels:  dplyr, tidyverse
Tidyheatmap
Draw heatmap simply using a tidy data frame
Stars: ✭ 151 (+978.57%)
Mutual labels:  dplyr, tidyverse
Tidyquery
Query R data frames with SQL
Stars: ✭ 138 (+885.71%)
Mutual labels:  dplyr, tidyverse
implyr
SQL backend to dplyr for Impala
Stars: ✭ 74 (+428.57%)
Mutual labels:  dplyr, tidyverse
CSSS508
CSSS508: Introduction to R for Social Scientists
Stars: ✭ 28 (+100%)
Mutual labels:  dplyr, tidyverse
datar
A Grammar of Data Manipulation in python
Stars: ✭ 142 (+914.29%)
Mutual labels:  dplyr, tidyverse
whyqd
data wrangling simplicity, complete audit transparency, and at speed
Stars: ✭ 16 (+14.29%)
Mutual labels:  data-wrangling
furniture
The furniture R package contains table1 for publication-ready simple and stratified descriptive statistics, tableC for publication-ready correlation matrixes, and other tables #rstats
Stars: ✭ 43 (+207.14%)
Mutual labels:  tidyverse
Udacity-Data-Analyst-Nanodegree
Repository for the projects needed to complete the Data Analyst Nanodegree.
Stars: ✭ 31 (+121.43%)
Mutual labels:  data-wrangling
R-data-wrangling
Materials for my my R data workshop. https://cengel.github.io/R-data-wrangling/
Stars: ✭ 17 (+21.43%)
Mutual labels:  tidyverse
Chapter-2
Code examples for Chapter 2 of Data Wrangling with JavaScript
Stars: ✭ 16 (+14.29%)
Mutual labels:  data-wrangling
xplore
A python package built for data scientist/analysts, AI/ML engineers for exploring features of a dataset in minimal number of lines of code for quick analysis before data wrangling and feature extraction.
Stars: ✭ 21 (+50%)
Mutual labels:  data-wrangling

Advanced Data Wrangling Workshop in R

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

We assume students have familiarity with the tidyverse packages.

Setup

We 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")
  )

All packages for this workshop can be installed with the following code.

# p_load loads and, if necessary, install missing packages.
# install.packages() + library() = p_load()
# If you just want to install, then use p_install()
if (!require("pacman")) install.packages("pacman")
pacman::p_load(
  tidyverse, # for the tidyverse framework
  palmerpenguins,
  gapminder, 
  kableExtra, 
  flextable,
  modelr,
  nycflights13 
  )

Original work by Jae Yeon Kim and remixed for the D-Lab by Alex Stephenson.

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].