# install the major packages from the course published on CRANinstall.packages(c("tidyverse", "tidymodels", "devtools", "usethis","colorspace", "janitor", "skimr", "tidytext"))# install a package hosted on GitHubremotes::install_github(repo ="cis-ds/rcis")
usethis::create_github_token(scopes =c("repo", "user", "gist", "workflow"),description ="<DESCRIBE YOUR DEVICE>")
gitcreds::gitcreds_set()#> ? Enter password or token: ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx#> -> Adding new credentials...#> -> Removing credentials from cache...#> -> Done.
usethis::create_github_token(scopes =c("repo", "user", "gist", "workflow"),description ="<DESCRIBE YOUR DEVICE>",host ="https://github.coecis.cornell.edu/")
gitcreds::gitcreds_set(url ="https://github.coecis.cornell.edu/")#> ? Enter password or token: ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx#> -> Adding new credentials...#> -> Removing credentials from cache...#> -> Done.
What have you learned?
Learning objectives for INFO 3312/5312
Implement principles of designing and creating effective data visualizations.
Evaluate, critique, and improve upon one’s own and others’ data visualizations based on how good a job the visualization does for communicating a message clearly and correctly.
Post-process and refine plots for effective communication.
Master using R and a variety of modern data visualization packages to reproducibly create data visualizations.
Work reproducibly individually and collaboratively using Git and GitHub.
Where to go from here
Keep your skills fresh
Integrate visualization techniques into other courses/projects