Skip to content

Commit

Permalink
retire SDS375 number
Browse files Browse the repository at this point in the history
  • Loading branch information
clauswilke committed Dec 27, 2024
1 parent 5df049d commit 5b3f312
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion datasets/US_states.R
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ ggplot(US_counties) +



US_states <- readRDS(url("https://wilkelab.org/SDS375/datasets/US_states_AKsmall.rds"))
US_states <- readRDS(url("https://wilkelab.org/SDS366/datasets/US_states_AKsmall.rds"))

ggplot(US_states) +
geom_sf() +
Expand Down
2 changes: 1 addition & 1 deletion datasets/gaussian_clusters.R
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ make_kmeans_plot(coords, centroids, centroids, color_points = TRUE)

# spirals

spirals <- read_csv("https://wilkelab.org/SDS375/datasets/spirals.csv")
spirals <- read_csv("https://wilkelab.org/SDS366/datasets/spirals.csv")

coords <- tibble(
x = spirals$x,
Expand Down
4 changes: 2 additions & 2 deletions slides/aesthetic-mappings.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ align_legend <- function(p, hjust = 0.5)

::: {.tiny-font}
```{r echo=FALSE, message=FALSE}
temps_long <- read_csv("https://wilkelab.org/SDS375/datasets/tempnormals.csv") |>
temps_long <- read_csv("https://wilkelab.org/SDS366/datasets/tempnormals.csv") |>
mutate(
location = factor(
location, levels = c("Death Valley", "Houston", "San Diego", "Chicago")
Expand Down Expand Up @@ -216,7 +216,7 @@ All examples will use the `temperatures` dataset:
```{r}
#| echo: true
#| message: false
temperatures <- read_csv("https://wilkelab.org/SDS375/datasets/tempnormals.csv") |>
temperatures <- read_csv("https://wilkelab.org/SDS366/datasets/tempnormals.csv") |>
mutate(
location = factor(
location, levels = c("Death Valley", "Houston", "San Diego", "Chicago")
Expand Down
2 changes: 1 addition & 1 deletion slides/telling-a-story.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ theme_set(theme_gray(14))
update_geom_defaults("point", list(size = 2))
update_geom_defaults("line", list(linewidth = 1))
preprints <- read_csv("https://wilkelab.org/SDS375/datasets/preprints.csv")
preprints <- read_csv("https://wilkelab.org/SDS366/datasets/preprints.csv")
```

## How did I get to teach data visualization?
Expand Down
2 changes: 1 addition & 1 deletion worksheets/aesthetic-mappings.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Next we set up the data.
```{webr}
#| edit: false
#| warning: false
temperatures <- read_csv("https://wilkelab.org/SDS375/datasets/tempnormals.csv") |>
temperatures <- read_csv("https://wilkelab.org/SDS366/datasets/tempnormals.csv") |>
mutate(
location = factor(
location, levels = c("Death Valley", "Houston", "San Diego", "Chicago")
Expand Down

0 comments on commit 5b3f312

Please sign in to comment.