rowwise: Convert to a rowwise tidytable

View source: R/rowwise.R

rowwiseR Documentation

Convert to a rowwise tidytable

Description

Convert to a rowwise tidytable.

Usage

rowwise(.df)

Arguments

.df

A data.frame or data.table

Examples

df <- tidytable(x = 1:3, y = 1:3 * 2, z = 1:3 * 3)

# Compute the mean of x, y, z in each row
df %>%
  rowwise() %>%
  mutate(row_mean = mean(c(x, y, z)))

# Use c_across() to more easily select many variables
df %>%
  rowwise() %>%
  mutate(row_mean = mean(c_across(x:z))) %>%
  ungroup()

mtfairbanks/gdt documentation built on April 12, 2024, 6:51 p.m.