Week 1: Introduction to Data Science and RStudio IDE
Course website at: jcvdav.github.io/EVR_628
Important
Make sure to complete assigned readings or software installation before class. This will count towards participation.
EVR628
in your subject headingf
for full screen / Esc
to exit full screeno
for overviewe
for PDF export mode (can’t see code)?
for other helpYou will learn how to access, work with, and visualize many different types of environmental data. For example:
How we think about projects
How we’ll learn things
EVR 509/609
EVR 624
RSM612
Introduction to Data Science
By the end of this week, you should be able to:
library(tidyverse)
library(ggrepel)
tibble(skill = c("Coding", "Stats", "Domain"),
x = c(-1, 1, 0),
y = c(1, 1, -1)) |>
ggplot(aes(x = x, y = y, label = skill, color = skill)) +
geom_point(size = 100, alpha = 0.5) +
geom_text(mapping = aes(label = skill),
color = "black",
nudge_x = c(-2, 2, 0),
nudge_y = c(0.5, 0.5, -2)) +
geom_text(x = 0, y = 0, label = "Data Science",
color = "black") +
coord_equal() +
lims(x = c(-4, 4),
y = c(-4, 4)) +
theme_void() +
theme(legend.position = "none")
This course only covers one bubble: Talking to your computer
BUT!
You should have already done this
By the end of this week, you should be able to:
(Unless you are having trouble installing R / RStudio)