Tidy data

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

coalesce()

{dplyr}

combine multiple columns into single column

unite()

{tidyr}

pivot data frame to be wider

pivot_wider()

{tidyr}

expand data frame to include combinations of values present in data

nesting()

{tidyr}

complete a data frame with missing combinations of data

complete()

{tidyr}

expand data frame to include all possible combinations of values

expand()

{tidyr}

split single column into multiple columns

separate()

{tidyr}

pivot data frame to be longer

pivot_longer()

{tidyr}

The end!