Replies: 3 comments 4 replies
344 x 7
했음.
ggplot(penguins, aes(x = bill_length_mm, y = bill_depth_mm)) +
geom_point()별로 관계 없어보임..
|
4. What happens if you map the same variable to multiple aesthetics?
longer the bill, deeper the bill.
penguins |>
ggplot(aes(x = bill_length_mm , y = bill_depth_mm, color = species, shape = species)) +
geom_point()
ggplot(penguins, aes(x = island, fill = species)) +
|




















Uh oh!
There was an error while loading. Please reload this page.
https://youtube.com/live/KwOTzMf9G5s
댓글로 Exercise를 풀고 Markdown 형태로
All reactions