Tidy data

nesting()

{tidyr}

expand data frame to include combinations of values present in data

unite()

{tidyr}

combine multiple columns into single column

pivot_wider()

{tidyr}

pivot data frame to be wider

expand()

{tidyr}

expand data frame to include all possible combinations of values

coalesce()

{dplyr}

combine vectors by returning the first non-missing value at each position

complete()

{tidyr}

complete a data frame with missing combinations of data

separate()

{tidyr}

split single column into multiple columns

pivot_longer()

{tidyr}

pivot data frame to be longer

The end!