Skip to content

Commit

Permalink
changed "midnight" to "11:59pm"
Browse files Browse the repository at this point in the history
  • Loading branch information
kstreet13 committed Sep 25, 2024
1 parent f195f75 commit aec5528
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion website/content/assignment/03-hw1.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ date: 2024-09-13

# Due Date

This assignment is due by midnight Pacific Time, September 27th, 2024.
This assignment is due by 11:59pm Pacific Time, September 27th, 2024.

# Learning Goals
- Download, read, and get familiar with an external dataset.
Expand Down
2 changes: 1 addition & 1 deletion website/content/assignment/05-hw2.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ date: 2024-09-27

## Due Date

This assignment is due by midnight Pacific Time, October 11th, 2024.
This assignment is due by 11:59pm Pacific Time, October 11th, 2024.

For this assignment, we will be analyzing data from USC’s Children’s Health Study.
The learning objectives are to conduct data wrangling and visualize the data with key questions in mind.
Expand Down
2 changes: 1 addition & 1 deletion website/content/assignment/08-midterm.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ date: 2024-10-11
knitr::opts_chunk$set(include = TRUE)
```

Due **Sunday, October 27th, 2024** by midnight Pacific Time.
Due **Sunday, October 27th, 2024** by 11:59pm Pacific Time.

**Learning Objective**: To apply the skills learned in PM 566 (through Week 6) by analyzing and interpreting a dataset of your choice.

Expand Down
2 changes: 1 addition & 1 deletion website/content/assignment/09-hw3.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ date: 2024-10-25

## Due Date

This assignment is due by midnight Pacific Time, November 8th, 2024.
This assignment is due by 11:59pm Pacific Time, November 8th, 2024.

## Text Mining

Expand Down
2 changes: 1 addition & 1 deletion website/content/assignment/11-hw4.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ date: 2024-11-08

## Due Date

This assignment is due by midnight Pacific Time, November 22nd, 2024.
This assignment is due by 11:59pm Pacific Time, November 22nd, 2024.

The learning objectives are to write faster code for computational task requiring a loop and to implement some queries and basic data wrangling in SQL.

Expand Down
2 changes: 1 addition & 1 deletion website/content/assignment/14-final.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ output: tufte::tufte_html
date: 2024-11-22
---

Due date: Friday December 6th, 2024, by midnight Pacific Time.
Due date: Friday December 6th, 2024, by 11:59pm Pacific Time.

**Learning Objective**: To apply the skills learned in
PM 566 by analyzing and interpreting a dataset of your choice.
Expand Down
8 changes: 5 additions & 3 deletions website/static/slides/05-data-wrangling/slides.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: "George G. Vega Yon and Kelly Streets"
# output:
# slidy_presentation:
# slide_level: 1
date: 2021-09-23
output:
xaringan::moon_reader:
css: ["theme.css", "default"]
Expand Down Expand Up @@ -268,8 +267,11 @@ For the rest of the session we will be using these variables:
`USAFID`, `WBAN`, `year`, `month`, `day`, `hour`, `min`, `lat`, `lon`, `elev`, `wind.sp`, `temp`, and `atm.press`.

```{r actual-selection}
# Data.table
dat <- dat |> select(USAFID, WBAN, year, month, day, hour, min, lat, lon, elev, wind.sp, temp, atm.press)
# select only the relevant variables
dat <- dat |>
select(USAFID, WBAN, year, month, day,
hour, min, lat, lon, elev,
wind.sp, temp, atm.press)
```

---
Expand Down

0 comments on commit aec5528

Please sign in to comment.