From 239d8e717fcfdd1361aa110bc886f89deba594ea Mon Sep 17 00:00:00 2001 From: Lucy Gao Date: Sun, 3 Sep 2023 21:53:14 -0700 Subject: [PATCH] Fixing date mistakes & broken links --- content/course.Rmd | 4 ++-- content/course.html | 6 +++--- content/notes/notes-a01.Rmd | 2 +- content/notes/notes-a01.html | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/content/course.Rmd b/content/course.Rmd index 3f19fa30..f50eaec2 100644 --- a/content/course.Rmd +++ b/content/course.Rmd @@ -31,7 +31,7 @@ Slack channel specifically for students: | | -| Worksheet A2 | [.ipynb](https://raw.githubusercontent.com/UBC-STAT/stat545.stat.ubc.ca/master/content/worksheets/worksheet_a02.ipynb) | [view it on GitHub](https://github.com/UBC-STAT/stat545.stat.ubc.ca/blob/master/content/worksheets/worksheet_a02.ipynb) | [Download zip](https://github.com/UBC-STAT/stat545.stat.ubc.ca/raw/master/content/worksheets/worksheet_a02.ipynb.zip) | **Tuesday, September 19, 2023 at 17:00 PT** +| Worksheet A2 | [.ipynb](https://raw.githubusercontent.com/UBC-STAT/stat545.stat.ubc.ca/master/content/worksheets/worksheet_a02.ipynb) | [view it on GitHub](https://github.com/UBC-STAT/stat545.stat.ubc.ca/blob/master/content/worksheets/worksheet_a02.ipynb) | [Download zip](https://github.com/UBC-STAT/stat545.stat.ubc.ca/raw/master/content/worksheets/worksheet_a02.ipynb.zip) | **Tuesday, September 26, 2023 at 17:00 PT** | Worksheet A3 | [.ipynb](https://raw.githubusercontent.com/UBC-STAT/stat545.stat.ubc.ca/master/content/worksheets/worksheet_a03.ipynb) | [view it on GitHub](https://github.com/UBC-STAT/stat545.stat.ubc.ca/blob/master/content/worksheets/worksheet_a03.ipynb) | [Download zip](https://github.com/UBC-STAT/stat545.stat.ubc.ca/raw/master/content/worksheets/worksheet_a03.ipynb.zip) | **Tuesday, October 3, 2023 at 17:00 PT** ```{=html} diff --git a/content/course.html b/content/course.html index f280906c..8236cfdd 100644 --- a/content/course.html +++ b/content/course.html @@ -6,7 +6,7 @@

Use this page to navigate your way through STAT 545.

-

This page was last updated on Thu, Aug 31.

+

This page was last updated on Sun, Sep 03.

Slack

Slack channel specifically for students: https://stat545classroom2023.slack.com/

@@ -57,7 +57,7 @@

Part A

Tue, Sep 19 Data Manipulation with dplyr -Worksheet A2 (.ipynb; viewable; zip) (Due Tuesday Sept 19, 2023 at 17:00 PT) +Worksheet A2 (.ipynb; viewable; zip) (Due Tuesday Sept 26, 2023 at 17:00 PT) Thu, Sep 21 @@ -153,7 +153,7 @@

Part A

.ipynb view it on GitHub Download zip -Tuesday, September 19, 2023 at 17:00 PT +Tuesday, September 26, 2023 at 17:00 PT diff --git a/content/notes/notes-a01.Rmd b/content/notes/notes-a01.Rmd index 15918387..d10890c4 100644 --- a/content/notes/notes-a01.Rmd +++ b/content/notes/notes-a01.Rmd @@ -68,7 +68,7 @@ Very useful general skills for getting unstuck are to 1. learn to help yourself, - E.g. copy the error message, maybe strip out anything highly specific, such the name of your R objects, surround with quotes and Google it! -- While you are getting started, I recommend you seek help within the STAT545 community first (try [Slack](https://stat545classroom2022.slack.com/)), before, e.g. posting to external forums. We are more cuddly. +- While you are getting started, I recommend you seek help within the STAT545 community first (try Slack!), before, e.g. posting to external forums. We are more cuddly. - This stackoverflow thread [How to make a great R reproducible example?](http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example/5963610#5963610) is fantastic. I find that, in the process of preparing my great reproducible example, I [answer my own question](http://htmlpreview.github.io/?https://gist.githubusercontent.com/jennybc/58466fd018823302f398/raw/4c7059558e1525b482f1ee794a5828ca8999bf98/2014-07-25_wrapper-graphics-dev-open-close.html) 90% of the time. YMMV. So it is a useful exercise even if you aren't ready to call in the experts yet. The process of stripping your problem down to its bare essence often reveals where the root issue lies. **Highly recommended!** diff --git a/content/notes/notes-a01.html b/content/notes/notes-a01.html index 0b43dd6f..b3f32ab0 100644 --- a/content/notes/notes-a01.html +++ b/content/notes/notes-a01.html @@ -70,7 +70,7 @@

What to do when you are stuck

  • E.g. copy the error message, maybe strip out anything highly specific, such the name of your R objects, surround with quotes and Google it!
-
  • While you are getting started, I recommend you seek help within the STAT545 community first (try Slack), before, e.g. posting to external forums. We are more cuddly.

  • +
  • While you are getting started, I recommend you seek help within the STAT545 community first (try Slack!), before, e.g. posting to external forums. We are more cuddly.

  • This stackoverflow thread How to make a great R reproducible example? is fantastic. I find that, in the process of preparing my great reproducible example, I answer my own question 90% of the time. YMMV. So it is a useful exercise even if you aren’t ready to call in the experts yet. The process of stripping your problem down to its bare essence often reveals where the root issue lies. Highly recommended!

  • Search stackoverflow and include the [r] tag. Or the [ggplot2] tag. Or the [plyr] tag. You get the idea.

  • Check out The R Inferno (see the 9th circle: “Unhelpfully seeking help”).