merge()
function to join two datasets.quantile()
.For this lab we will be dealing with the meteorological dataset
met
. In this case, we will use data.table
to
answer some questions regarding the met
dataset, while at
the same time practice your Git+GitHub skills for this project.
This markdown document should be rendered using
github_document
document.
Go to wherever you are planning to store the data on your computer, and create a folder for this project
In that folder, save this template as “README.Rmd”. This will be the markdown file where all the magic will happen.
Go to your GitHub account and create a new repository of the same name that your local folder has, e.g., “JSC370-labs”.
Initialize the Git project, add the “README.Rmd” file, and make your first commit.
Add the repo you just created on GitHub.com to the list of remotes, and push your commit to origin while setting the upstream.
Most of the steps can be done using command line:
# Step 1
cd ~/Documents
mkdir JSC370-labs
cd JSC370-labs
# Step 2
wget https://raw.githubusercontent.com/JSC370/jsc370-2023/main/labs/lab05/lab05-wrangling-gam.Rmd
mv lab05-wrangling-gam.Rmd README.Rmd
# if wget is not available,
curl https://raw.githubusercontent.com/JSC370/jsc370-2023/main/labs/lab05/lab05-wrangling-gam.Rmd --output README.Rmd
# Step 3
# Happens on github
# Step 4
git init
git add README.Rmd
git commit -m "First commit"
# Step 5
git remote add origin git@github.com:[username]/JSC370-labs
git push -u origin master
You can also complete the steps in R (replace with your paths/username when needed)
# Step 1
setwd("~/Documents")
dir.create("JSC370-labs")
setwd("JSC370-labs")
# Step 2
download.file(
"https://raw.githubusercontent.com/JSC370/jsc370-2023/main/labs/lab05/lab05-wrangling-gam.Rmd",
destfile = "README.Rmd"
)
# Step 3: Happens on Github
# Step 4
system("git init && git add README.Rmd")
system('git commit -m "First commit"')
# Step 5
system("git remote add origin git@github.com:[username]/JSC370-labs")
system("git push -u origin master")
Once you are done setting up the project, you can now start working with the MET data.
Load the data.table
(and the dtplyr
and
dplyr
packages if you plan to work with those).
Load the met data from https://github.com/JSC370/jsc370-2023/blob/main/labs/lab03/met_all.gz or (Use https://raw.githubusercontent.com/JSC370/jsc370-2023/main/labs/lab03/met_all.gz to download programmatically), and also the station data. For the latter, you can use the code we used during lecture to pre-process the stations data:
# Download the data
stations <- fread("ftp://ftp.ncdc.noaa.gov/pub/data/noaa/isd-history.csv")
stations[, USAF := as.integer(USAF)]
# Dealing with NAs and 999999
stations[, USAF := fifelse(USAF == 999999, NA_integer_, USAF)]
stations[, CTRY := fifelse(CTRY == "", NA_character_, CTRY)]
stations[, STATE := fifelse(STATE == "", NA_character_, STATE)]
# Selecting the three relevant columns, and keeping unique records
stations <- unique(stations[, list(USAF, CTRY, STATE)])
# Dropping NAs
stations <- stations[!is.na(USAF)]
# Removing duplicates
stations[, n := 1:.N, by = .(USAF)]
stations <- stations[n == 1,][, n := NULL]
Across all weather stations, what is the median station in terms of
temperature, wind speed, and atmospheric pressure? Look for the three
weather stations that best represent continental US using the
quantile()
function. Do these three coincide?
Knit the document, commit your changes, and save it on GitHub. Don’t
forget to add README.md
to the tree, the first time you
render it.
Just like the previous question, you are asked to identify what is the most representative, the median, station per state. This time, instead of looking at one variable at a time, look at the euclidean distance. If multiple stations show in the median, select the one located at the lowest latitude.
Knit the doc and save it on GitHub.
For each state, identify what is the station that is closest to the
mid-point of the state. Combining these with the stations you identified
in the previous question, use leaflet()
to visualize all
~100 points in the same figure, applying different colors for those
identified in this question.
Knit the doc and save it on GitHub.
Using the quantile()
function, generate a summary table
that shows the number of states included, average temperature,
wind-speed, and atmospheric pressure by the variable “average
temperature level,” which you’ll need to create.
Start by computing the states’ average temperature. Use that measurement to classify them according to the following criteria:
Once you are done with that, you can compute the following:
All by the levels described before.
Knit the document, commit your changes, and push them to GitHub.
Let’s practice running regression models with smooth functions on X.
We need the mgcv
package and gam()
function to
do this.
using your data with the median values per station, examine the association between median temperature (y) and median wind speed (x). Create a scatterplot of the two variables using ggplot2. Add both a linear regression line and a smooth line.
fit both a linear model and a spline model (use
gam()
with a cubic regression spline on wind speed).
Summarize and plot the results from the models and interpret which model
is the best fit and why.