Podstawy programowania funkcyjnego z purrr
Auriel Fournier
Instructor
ggplot() wymaga ramki danych jako danych wejściowychggplot()geom_*() określa typ wykresuggplot(data = dataframe,
aes(x = columnA,
y = columnB))+
geom_point()

birddf <- bird_measurements %>%
map_df(~ data_frame(
wing_length = .x[["wing length"]],
weight = .x[["weight"]])) %>%
ggplot(aes(x = weight,
y = wing_length))+
geom_point()

Podstawy programowania funkcyjnego z purrr