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 3: College Tuition, Diversity, and Pay
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
Just use this code below to download the data:
OPTION 1
OPTION 2
OPTION 3
A2. What are the files? What are the variables?
tuition_cost.csv
tuition_income.csv
salary_potential.csv
historical_tuition.csv
diversity_school.csv
A3. Pre-processing
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
What are the most diverse universities among the top 100 largest universities?
Example:
https://twitter.com/thomas_mock/status/1237098932775215104
Type in the questions below:
Q1 Do higher tution costs lead to a higher salary potential?
Q2 Is there a link between income level and diversity?
tuition_income.csv
anddiversity_school.csv
Q3 What's the best "value" university?
Q4 Is there an association between tuition costs and enrolment numbers?
C. Start coding! Share your code here! (30 minutes)
Share your code and your pretty figures here.
Stuck? Share what you have (even code that doesn't work) and ask for help.
Data Pre-processing
Q1 Do higher tution costs lead to a higher salary potential?
Answer
Looks like it
Tighter trend when we use out_of_state rather than in_state, probably because it filters out cheaper, public universities
Q2
Answer
Q3 What’s the best “value” university?
Answer
Based on "out of state fees" or "in state": Brigham Young University-Idaho
Q4 Is there an association between tuition costs and enrolment numbers?
Answer
First I plotted one against the other
It seemed bunched up on the y axis, so I transformed it to a log10 scale.
Hmm, there seems to be a trend there. But there's also a big cluster on the left that doesn't seem to be part of that trend.
❓What do you think the cluster is?
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 →Make something cool? Post it on twitter! #TidyTuesday
Or see what other people around the world did with the data:
https://twitter.com/hashtag/TidyTuesday?src=hashtag_click&f=live
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()
.Q. How can I calculate a diversity index (Shannon-Wiener)?
Answer:
There are a number of packages that can help you calculate this (e.g. vegan).
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)