Skip to content

Commit cc7d61f

Browse files
committed
added a starting point
1 parent 261ba18 commit cc7d61f

25 files changed

+472
-58
lines changed

NZ_girls/kea_tutorial/css/logo.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
.tutorialTitle:before {
2-
content: url("../images/forwards.png") url("../images/rladies.png");
2+
content: url("../images/forwards.png");
33
display: block;
44
}

NZ_girls/kea_tutorial/kea_tutorial.Rmd

+14-14
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ tutorial_html_dependency()
1616

1717
## Welcome!
1818

19-
Hey math boffins, welcome to the coding with R class! Let me introduce you to our team:
19+
Hi, Kia ora, boffins! Welcome to the coding with R class! Let me introduce you to our team:
2020

21-
- Hi, I'm Di! A professor at Monash University, and I can make pictures of things that live in high dimensions, that's more than 3D.
22-
- This is Earo! She's a PhD student in econometrics and business statistics at Monash University, and plots of data on a calendar.
23-
- This is Thiyanga! She's a PhD student in econometrics and business statistics at Monash University, and an expert in random forests. What's a random forest, you ask? Just ask, it is related to trees.
24-
- This is Dilini! She's also a PhD student in econometrics and business statistics at Monash University, and she's working on intruder detection.
21+
- Hi, I'm Di! A professor at Monash University in Melbourne Australia, and I like to play all sorts of sports, tennis, soccer, hockey, cricket, and go boogie boarding.
22+
- This is Jenny! Jenny is a professor at the University of British Columbia in Canada, and a data scientist at RStudio. Jenny has three sons, who could be mistaken for the Weasley boys.
23+
- This is Hadley! He is the chief scientist at RStudio. He built the tidyverse, that we will use today. Oh, and he grew up in New Zealand, and loves cooking.
24+
-
2525

2626
### Exercise
2727

28-
*Introduce yourself to the other members of your team, and brainstorm a team name. You've got five minutes!*
28+
*Introduce yourself to the other members of your team, and brainstorm a team name.*
2929

3030
*Tell us about your choice of team name, and something about each member*
3131

@@ -34,7 +34,7 @@ Hey math boffins, welcome to the coding with R class! Let me introduce you to ou
3434
- There will be a little bit of instruction, and a few exercises, then some more instruction, and some more exercises, some reading, some more exercises, ...
3535
- The goal for the day is to work with your team and mentor to make a web app for looking at data.
3636
- We are going to learn about the software R, and the language of data analysis. There's a lot of things to learn. Its ok if you can't remember it all. Most important thing is to have fun and play, break things and fix them, try out new stuff!
37-
- We will have breaks whenever you feel you want them - there are lamingtons and cupcakes for morning and afternoon tea. And we are planning to order pizza for lunch unless there is a better idea.
37+
- We will have breaks whenever you feel you want them - there are goodies for morning, afternoon tea, and lunch.
3838

3939
CODE of CONDUCT:
4040

@@ -45,7 +45,7 @@ CODE of CONDUCT:
4545

4646
MATERIALS for WORKSHOP:
4747

48-
*These notes can be found at https://dicook.shinyapps.io/bilby_tutorial/ * and example web apps can be found at https://dicook.shinyapps.io/pisa/ and https://dicook.shinyapps.io/pisa_world/.
48+
*These notes can be found at https://ebsmonash.shinyapps.io/kea_tutorial/ * and example web apps can be found at https://ebsmonash.shinyapps.io/pisa/ and https://ebsmonash.shinyapps.io/pisa_world/.
4949

5050
## Let's get started learning R!
5151

@@ -512,7 +512,7 @@ Every three years the OECD conducts tests of workforce readiness on around 500,0
512512

513513
## Student results
514514

515-
The data from the 2015 results can be downloaded from the `Data` [link](http://www.oecd.org/pisa/data/2015database/). There are multiple data sets, but the one that we will use for this workshop is the student database. We have downloaded this data, and extracted the results for Australia, for you, so you don't need to do this. But you need to understand what is in the database. The student database has test scores for 14,530 Australian 15 year olds. The students were tested on math, science and reading, and there were special topics in science that were tested in that year. In addition, students completed a survey to provide information on their household (how many TVs, books, ...), their gender, and birth year, how supportive their parents are, what their friends like to do, how much time do they spend studying out of hours, and about their attitudes to school, subjects, and teachers. Overall, there are 921 variables!! In the subset we have made there are 44 of these variables.
515+
The data from the 2015 results can be downloaded from the `Data` [link](http://www.oecd.org/pisa/data/2015database/). There are multiple data sets, but the one that we will use for this workshop is the student database. We have downloaded this data, and extracted the results for New Zealand, for you, so you don't need to do this. But you need to understand what is in the database. The student database has test scores for 4,520 New Zealand 15 year olds. The students were tested on math, science and reading, and there were special topics in science that were tested in that year. In addition, students completed a survey to provide information on their household (how many TVs, books, ...), their gender, and birth year, how supportive their parents are, what their friends like to do, how much time do they spend studying out of hours, and about their attitudes to school, subjects, and teachers. Overall, there are 921 variables!! In the subset we have made there are 44 of these variables.
516516

517517
Other tables available to download contain survey responses to questionnaires provided to the school principal, and sent home to parents. We won't be working with this information today.
518518

@@ -524,11 +524,11 @@ quiz(
524524
answer("18"),
525525
answer("21")
526526
),
527-
question("How many students in Australia were tested in 2015",
528-
answer("530"),
529-
answer("1,453"),
530-
answer("14,530", correct = TRUE),
531-
answer("145,300")
527+
question("How many students in New Zealand were tested in 2015",
528+
answer("452"),
529+
answer("4,520", correct = TRUE),
530+
answer("14,520"),
531+
answer("145,200")
532532
),
533533
question("What subjects are tested?",
534534
answer("math", correct = TRUE),

0 commit comments

Comments
 (0)