Introduction to Writing Functions in R
Richie Cotton
Data Evangelist at DataCamp
x * y
x %>% multiply_by(y)
x ^ y
x %>% raise_to_power(y)
x[y]
x %>% extract(y)