Reveal Presentation
library(tidyverse)
library(palmerpenguins)
penguins |>
mutate(
bill_ratio = bill_depth_mm / bill_length_mm,
bill_area = bill_depth_mm * bill_length_mm
)
- 1
-
Take
penguins
, and then,
- 2
-
add new columns for the bill ratio and bill area.
Reveal Presentation library (tidyverse) library (palmerpenguins) 1 penguins |> 2 mutate ( bill_ratio = bill_depth_mm / bill_length_mm, bill_area = bill_depth_mm * bill_length_mm )