Learn R Programming

⚠️There's a newer version (1.3.1) of this package.Take me there.

tidyr

Overview

The goal of tidyr is to help you create tidy data. Tidy data is data where:

  1. Every column is variable.
  2. Every row is an observation.
  3. Every cell is a single value.

Tidy data describes a standard way of storing data that is used wherever possible throughout the tidyverse. If you ensure that your data is tidy, you’ll spend less time fighting with the tools and more time working on your analysis. Learn more about tidy data in vignette("tidy-data").

Installation

# The easiest way to get tidyr is to install the whole tidyverse:
install.packages("tidyverse")

# Alternatively, install just tidyr:
install.packages("tidyr")

# Or the development version from GitHub:
# install.packages("devtools")
devtools::install_github("tidyverse/tidyr")

Cheatsheet

Getting started

library(tidyr)

tidyr functions fall into five main categories:

  • “Pivotting” which converts between long and wide forms. tidyr 1.0.0 introduces pivot_longer() and pivot_wider(), replacing the older spread() and gather() functions. See vignette("pivot") for more details.

  • “Rectangling”, which turns deeply nested lists (as from JSON) into tidy tibbles. See unnest_longer(), unnest_wider(), hoist(), and vignette("rectangle") for more details.

  • Nesting converts grouped data to a form where each group becomes a single row containing a nested data frame, and unnesting does the opposite. See nest(), unnest(), and vignette("nest") for more details.

  • Splitting and combining character columns. Use separate() and extract() to pull a single character column into multiple columns; use unite() to combine multiple columns into a single character column.

  • Make implicit missing values explicit with complete(); make explicit missing values implicit with drop_na(); replace missing values with next/previous value with fill(), or a known value with replace_na().

Related work

tidyr supersedes reshape2 (2010-2014) and reshape (2005-2010). Somewhat counterintuitively, each iteration of the package has done less. tidyr is designed specifically for tidying data, not general reshaping (reshape2), or the general aggregation (reshape).

data.table provides high-performance implementations of melt() and dcast()

If you’d like to read more about data reshaping from a CS perspective, I’d recommend the following three papers:

To guide your reading, here’s a translation between the terminology used in different places:

tidyr 1.0.0pivot longerpivot wider
tidyr < 1.0.0gatherspread
reshape(2)meltcast
spreadsheetsunpivotpivot
databasesfoldunfold

Getting help

If you encounter a clear bug, please file a minimal reproducible example on github. For questions and other discussion, please use community.rstudio.com.


Please note that the tidyr project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Copy Link

Version

Install

install.packages('tidyr')

Monthly Downloads

1,001,317

Version

1.2.1

License

MIT + file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

September 8th, 2022

Functions in tidyr (1.2.1)

drop_na

Drop rows containing missing values
expand_grid

Create a tibble from all combinations of inputs
check_pivot_spec

Check assumptions about a pivot spec
complete

Complete a data frame with missing combinations of data
extract

Extract a character column into multiple columns using regular expression groups
chop

Chop and unchop
expand

Expand data frame to include all possible combinations of values
deprecated-se

Deprecated SE versions of main verbs
billboard

Song rankings for Billboard top 100 in the year 2000
construction

Completed construction in the US in 2018
%>%

Pipe operator
full_seq

Create the full sequence of values in a vector
nest

Nest and unnest
fill

Fill in missing values with previous or next value
nest_legacy

Legacy versions of nest() and unnest()
gather

Gather columns into key-value pairs
pack

Pack and unpack
hoist

Rectangle a nested list into a tidy tibble
extract_numeric

Extract numeric component of variable.
fish_encounters

Fish encounters
relig_income

Pew religion and income survey
separate_rows

Separate a collapsed column into multiple rows
separate

Separate a character column into multiple columns with a regular expression or numeric locations
pivot_wider

Pivot data from long to wide
pivot_longer

Pivot data from wide to long
replace_na

Replace NAs with specified values
smiths

Some data about the Smith family
reexports

Objects exported from other packages
pivot_wider_spec

Pivot data from long to wide using a spec
pivot_longer_spec

Pivot data from wide to long using a spec
tidyr_legacy

Legacy name repair
unite

Unite multiple columns into one by pasting strings together
uncount

"Uncount" a data frame
tidyr-package

tidyr: Tidy Messy Data
tidyr_tidy_select

Argument type: tidy-select
who

World Health Organization TB data
us_rent_income

US rent and income data
world_bank_pop

Population data from the world bank
spread

Spread a key-value pair across multiple columns
table1

Example tabular representations