1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
graph TD
.csv --> Import
API --> Import
DBI --> Import
dbplyr --> Import
Import -.-> Format[Format for analysis]
Format -.-> Tidy
subgraph r4ds
Import ==> Tidy
Tidy ==> Transform
Transform ==> Visualize
Visualize ==> Model
Model -.-> Transform
Visualize ==> Communicate
end
Visualize -.-> FormatComm[Format for communication]
FormatComm -.-> Communicate
FormatComm -- Apply formatting early --> Format
dbplyr -.-> Tidy
dbplyr -.-> Transform
dbplyr -.-> Visualize
Communicate --> gt
Communicate --> ggplot2
Communicate --> DT
Communicate --> plotly
|