Skip to content

Commit 3216c61

Browse files
committed
add useR! tutorial abstract
1 parent 92f1533 commit 3216c61

File tree

1 file changed

+45
-0
lines changed

1 file changed

+45
-0
lines changed

useR-abstract.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: "Solving iteration problems with purrr"
3+
author: |
4+
| Charlotte Wickham^1^
5+
|
6+
| 1. Oregon State University
7+
output: html_document
8+
---
9+
10+
**Keywords**: purrr, tidyverse, tibble
11+
12+
## Outline
13+
14+
Code with a lot of duplication is harder to understand, troubleshoot and maintain. The goal of this tutorial is help you remove duplication in your code by using functions that write `for` loops for you.
15+
16+
You'll learn to use the functions in the `purrr` package to perform iterative tasks: tasks that look like "for each _____ do _____".
17+
18+
By the end of the tutorial you'll be writing code that is more readable and easier to update and you'll be ready to solve new iteration problems faster and with fewer mistakes.
19+
20+
## Learning Objectives
21+
22+
By the end of the tutorial, you'll be able to:
23+
24+
* Move from solving a problem on a single element, to iterating that solution over many elements with `map()`.
25+
* Identify when to use the typed variants of `map()`: `map_lgl()`, `map_int()`, `walk()` etc.
26+
* Iterate over two arguments with `map2()`.
27+
* Leverage `purrr` to get list data into tibbles.
28+
* Use `purrr` to work with list columns in tibbles.
29+
30+
## Pre-requisites
31+
32+
Don't worry if you have never written a `for` loop, used `lapply()`, written your own function or heard of a `tibble`, this tutorial is designed to be accessible to beginners.
33+
34+
That said, you should be familiar with exploring and subsetting the basic data structures in R including lists and data frames.
35+
36+
This is a hands-on tutorial, you'll need your laptop with R and `purrr` installed. Check http://bit.ly/purrr-user17 closer to the date for more details.
37+
38+
## Instructor Info
39+
40+
Charlotte Wickham
41+
42+
43+
* [cwick.co.nz](http://www.cwick.co.nz)
44+
* @[cvwickham](http://www.twitter.com/cvwickham)
45+

0 commit comments

Comments
 (0)