
EVR 628- Intro to Environmental Data Science
Rosenstiel School of Marine, Atmospheric & Earth Science and Institute for Data Science & Computing
Course website at: jcvdav.github.io/EVR_628

Warning
Expect the first sessions to be rocky as you get up to speed and we standardize our computers
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:

You will be able to use R code to build reproducible pipelines
How we think about projects

How we’ll learn things
RSM 612 
MBE 716 
(We’ll only do this one if I am able to join live)
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")
BUT!
{EVR628tools} contains data and a few functions to support the courseYou should have already done this
By the end of this week, you should be able to:
(Unless you are having trouble installing R / RStudio)