Tidy Tuesday Exercise

# install.packages("tidytuesdayR")
library(tidytuesdayR)

# install.packages("here")
library(here)
here() starts at /Users/chirst/Desktop/Git/corahirst-MADA-portfolio

Load TidyTuesday Datasets

The following code chunk loads the Tidy Tuesday data set for the week of April 09, 2024.

## save exercise - tt_data object - as variable
tuesdata <- tidytuesdayR::tt_load('2024-04-09')
--- Compiling #TidyTuesday Information for 2024-04-09 ----
--- There are 4 files available ---
--- Starting Download ---

    Downloading file 1 of 4: `eclipse_annular_2023.csv`
    Downloading file 2 of 4: `eclipse_total_2024.csv`
    Downloading file 3 of 4: `eclipse_partial_2023.csv`
    Downloading file 4 of 4: `eclipse_partial_2024.csv`
--- Download complete ---
## save datasets as .csv files in data folder for continuity and reproducibility
# annular 2023
annular_2023 = tuesdata$eclipse_annular_2023 # save data frame in environment
  file = here("tidytuesday-exercise", "data", "eclipse_annular_2023.csv") 
  write.csv(annular_2023, file = file) # save as csv in data subfolder
# total 2024
total_2024 = tuesdata$eclipse_total_2024 # save data frame in environment
  file = here("tidytuesday-exercise", "data", "eclipse_total_2024.csv") 
  write.csv(total_2024, file = file) # save as csv in data subfolder

This Tidy Tuesday exercise explores data from NASA’s Scientific Visualization Studio about the annular solar eclipse paths recorded on October 14, 2023 and April 8, 2024.

eclipse_annular_2023.csv and eclipse_total_2024.csv can be found in the data subfolder of the tidytuesday-exercise folder. The datasets containing path information of partial_ eclipses are too large to be saved to github - c’est la vie.

Explore Eclipse Path Datasets

The two datasets contain information about the path of the moon across the sun at different locations within the United States during either the annular solar eclipse of 2023 (eclipse_annular_2023.csv) or the total solar eclipse of 2024 (eclipse_total_2024.csv.) An annular eclipse occurs when the moon is closer to its maximum distance from the Earth in its orbit and, as a result, a ring of sunlight is still visible around the moon’s shadow when they are perfectly centered in the sky. This is not the case for a total eclipse, where the moon is close enough to the earth that the sun is completely obscured. The difference is pretty stark, and can be seen in the image below:

This is an image of a total vs annular solar eclipse