or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing
xxxxxxxxxx
Tidy Tuesdays Week 2: National Hockey League (NHL) Goals
To start please visit: https://github.com/BEES-Tidy-Tuesdays/home
You will find a link to this collaborative document called "Week 2 notes".
Please Read
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →This is a collaborative markdown document: feel free to add, change, and improve it. We will upload the final document to github after this Tidy Tuesday session and use parts of it as a template for future sessions.
If something is unclear or doesn't make sense, fix it, or make a comment.
A. Preparation (~5-10 minutes)
A1. Make sure R and R studio are installed and running
A2. Download and start exploring the data
Please access the data here. Download and extract to a specified folder. We encourage you to start working by creating a new Rproject, and use best practices for file management.
OR
To clone the data set from github using git in RStudio:
N.B. You need git installed on your computer, you can download it here:
OR
Just use this code to download the data
A2. What are the files? What are the variables?
Files
The data is broken down into a few files:
Variables/Attributes
top_250.csv
Please note this is the top 250 goal scorers as found here.
game_goals.csv
Goals for each player and each game (only for players who started at or after 1979-80 season). This is due to limited game-level data prior to 1980.
season_goals.csv
A3. Pre-processing
Are the data 'tidy'?
Hint: What is tidy data?
Do we need to filter out records with missing data?
Tip: Cool way to quickly summarise your data
B. Think of questions we can ask from the data (5 minutes)
Talk to the people nearest you and brainstorm some questions we can ask with this dataset. What could this data tell us? What are some interesting questions we could ask? How do you plan to visualise it?
Question ideas
Example:
Will AlexOvechkin beat Gretzky by age 40?
Type in the questions below:
game_goals.csv
(Kat)C. Start coding! Share your code here! (30 minutes)
Share your code, and your pretty figures here.
Stuck? Share what you have and ask for help.
Preprocessing code
Read data
Can we map where the missing data are?
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →top250$raw_rank
column?Q1
Answer
Q2 Which Season has more goals?
Answer
Q3 Are the number of goals for each player increasing over time?
Answer: No
Potential explanations:
Q4 How does the number of teams change across seasons?
Answer
D. Wrap up (10 minutes)
Cool R things I learnt this week
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →What could be improved from the next meeting?
E Help! - ask questions about today's Tidy Tuesday here
If you help someone in person, please put it here as well, so others can learn.
- The image file may be corrupted
- The server hosting the image is unavailable
- The image path is incorrect
- The image format is not supported
Learn More →Q. How do I change the background?
A. It depends on what you want to change it to. In ggplot, the best way to change the background is to use
theme()
.F General R help - Stuck on something? Need advice on you current project? Can you help answer someone else's question?
(N.B. this document is public, so don't include sensitive or private information)