week_3
4 Plot with ggplot2 & plotly
4.1 ggplot2
- 關於ggplot2的基本資訊:
學習ggplot2的資源:
4.2 plotly
- 關於plotly ...
Plotly for R is an interactive, browser-based charting library built on the open source JavaScript graphing library plotly.js.
It works entirely locally in your web-browser via the HTML widgets framework.
讓你的靜態圖片動動動起來。
- 學習參考:
- 最好的參考,就是從Plotly ggplot2 Library直接觀察呢!!(學會ggplot2,就會plotly for ggplot)
另外關於什麼是tidyverse...?(Optional)
或許在查找資料時,你發現有些code或文章內使用了...library(tidyverse)
<-- 這是什麼?
The tidyverse is an opinionated collection of R packages designed for data science.
All packages share an underlying design philosophy, grammar, and data structures.
- 參考R for Data Science的內容
- tidyverse包含了幾個資料處理與視覺化的packages,幫助使用者省下一些引用麻煩。(簡單來說就是一個
懶人包套件)
- tidyverse包含了幾個資料處理與視覺化的packages,幫助使用者省下一些引用麻煩。(簡單來說就是一個
library(tidyverse)
#> Loading tidyverse: ggplot2
#> Loading tidyverse: tibble
#> Loading tidyverse: tidyr
#> Loading tidyverse: readr
#> Loading tidyverse: purrr
#> Loading tidyverse: dplyr
#> Conflicts with tidy packages ----------------------------------------------
#> filter(): dplyr, stats
#> lag(): dplyr, stats