SlideShare a Scribd company logo
Classes without dependencies
Teaching the tidyverse to first year science students
Sam Clifford, Iwona Czaplinski, Brett Fyfield, Sama Low-Choy, Belinda
Spratt, Amy Stringer, Nicholas Tierney
2018-07-12
The student body’s got a bad preparation
SEB113 a core unit in QUT’s 2013 redesign of Bachelor of Science
Introduce key math/stats concepts needed for first year science
OP 13 cutoff (ATAR 65)
Assumed knowledge: Intermediate Mathematics
Some calculus and statistics
Not formally required
Diagnostic test and weekly prep material
Basis for further study in disciplines (explicit or embedded)
Still needs to be a self-contained unit that teaches skills
What they need is adult education
Engaging students with use of maths/stats in science
Build good statistical habits from the start
Have students doing analysis
that is relevant to their needs
as quickly as possible
competently
with skills that can be built on
Introduction to programming
reproducibility
separating analysis from the raw data
flexibility beyond menus
correcting mistakes becomes easier
You go back to school
Bad old days
Manual calculation of test statistics
Reliance on statistical tables
Don’t want to replicate senior high school study
Reduce reliance on point and click software that only does
everything students need right now (Excel, Minitab)
Students don’t need to become R developers
Focus on functionality rather than directly controlling every element,
e.g. LATEXvs Word
It’s a bad situation
Initial course development was not tidy
New B Sc course brought forward
Grab bag of topics at request of science academics
Difficult to find tutors who could think outside “traditional” stat. ed.
very low student satisfaction initially
Rapid and radical redesign required
tidyverse an integrated suite focused on transforming data frames
Vectorisation > loops
RStudio > JGR > Rgui.exe
What you want is an adult education (Oh yeah!)
Compassion and support for learners
Problem- and model-based
Technology should support learning goals
Go further, quicker by not focussing on mechanical calculations
Workflow based on functions rather than element manipulation
Statistics is an integral part of science
Statistics isn’t about generating p values
see Cobb in Wasserstein and Lazar [2016]
Machines do the work so people have time to think – IBM (1967)
All models are wrong, but some are useful – Box (1987)
Now here we go dropping science, dropping it all over
Within context of scientific method:
Aims
Methods and Materials
1. Get data/model into an analysis environment
2. Data munging
Results
3. Exploration of data/model
4. Compute model
5. Model diagnostics
Conclusion
6. Interpret meaning of results
I said you wanna be startin’ somethin’
Redesign around ggplot2
ggplot2 introduced us to tidy data requirements
Redesign based on Year 11 summer camp
This approach not covered by textbooks at the time
Tried using JGR and Plot Builder for one semester
Extension to wider tidyverse
Replace unrelated packages/functions with unified approach
Focus on what you want rather than directly coding how to do it
Good effort-reward with limited expertise
Summer(ise) loving, had me a blast; summer(ise) loving,
happened so fast
R is a giant calculator that can operate on objects
ggplot() requires a data frame object
dplyr::summarise() to summarise a column variable
dplyr::group_by() to do summary according to specified
structure
Copy-paste or looping not guaranteed to be MECE
Group-level summary stats leads to potential statistical models
Easier, less error prone, than repeated usage of =AVERAGE()
We want the funk(tional programming paradigm)
Tidy data as observations of variables with structure [Wickham,
2014b]
R as functional programming [Wickham, 2014a]
Actions on entire objects to do things to data and return useful
information
Students enter understanding functions like y(x) = x2
function takes input
function returns output
e.g. mean(x) = i xi/n
Week 4: writing functions to solve calculus problems
magrittr::%>% too conceptually similar to ggplot2::+ for
novices to grasp in first course
Like Frankie sang, I did it my way
What’s the mean gas mileage for each engine geometry and
transmission type for the 32 cars listed in 1974 Motor Trends
magazine?
Loops For each of the pre-computed number of
groups, subset, summarise and store how
you want
tapply() INDEX a list of k vectors, 1 summary
FUNction, returns k-dimensional array
dplyr specify grouping variables and which sum-
mary statistics, returns tidy data frame ready
for model/plot
Night of the living baseheads
Like all procedural languages, plot() has one giant list of
arguments
Focus is on how plot is drawn rather than what you want to plot
Inefficiency of keystrokes
re-stating the things being plotted
setting up plot axis limits
loop counters for small multiples, etc.
Toot toot, chugga chugga, big red car
Say we want to plot cars’ fuel efficiency against weight
library(tidyverse)
data(mtcars)
mtcars <- mutate(
mtcars, l100km = 235.2146/mpg,
wt_T = wt/2.2046,
am = factor(am, levels = c(0,1),
labels=c("Auto", "Manual")),
vs = factor(vs, levels = c(0,1),
labels=c("V","S")))
plot(y=mtcars$l100km, x=mtcars$wt_T)
1.0 1.5 2.0 2.5
101520
mtcars$wt_T
mtcars$l100km
Fairly quick to say what
goes on x and y axes
More arguments → better
graph
xlim, ylim
xlab, ylab
main
type, pch
What if we want to see how
it varies with
engine geometry
transmission type
The wisdom of the fool won’t set you free
yrange <- range(mtcars$l100km)
xrange <- range(mtcars$wt_T)
levs <- expand.grid(vs = c("V", "S"),
am = c("Auto", "Manual"))
par(mfrow = c(2,2))
for (i in 1:nrow(levs)){
dat_to_plot <- merge(levs[i, ], mtcars)
plot(dat_to_plot$l100km ~ dat_to_plot$wt_T, pch=16,
xlab="Weight (t)", xlim=xrange,
ylab="Fuel efficiency (L/100km)",
ylim=yrange,
main = sprintf("%s-%s", levs$am[i],
levs$vs[i]))}
1.0 1.5 2.0 2.5
101520
Auto−V
Weight (t)
Fuelefficiency(L/100km)
1.0 1.5 2.0 2.5
101520
Auto−S
Weight (t)
Fuelefficiency(L/100km)
1.0 1.5 2.0 2.5
101520
Manual−V
Weight (t)
Fuelefficiency(L/100km)
1.0 1.5 2.0 2.5
101520
Manual−S
Weight (t)
Fuelefficiency(L/100km)
ggplot(data = mtcars,
aes(x = wt_T,
y = l100km)) +
geom_point() +
facet_grid(am ~ vs) +
theme_bw() +
xlab("Weight (t)") +
ylab("Fuel efficiency (L/100km)")
V S
AutoManual
1.0 1.5 2.0 2.5 1.0 1.5 2.0 2.5
10
15
20
10
15
20
Weight (t)
Fuelefficiency(L/100km)
One, two, princes kneel before you
Both approaches do the same thing
Idea base ggplot2
Plot variables Specify vectors Coordinate system de-
fined by variables
Small multiples Loops, subsets, par facet_grid
Common axes Pre-computed Inherited from data
V/S A/M annotation Strings Inherited from data
Axis labels Per axis set For whole plot
Focus on putting things on the page vs representing variables
I got a grammar Hazel and a grammar Tilly
Plots are built from [Wickham, 2010]
data – which variables are mapped to aesthetic elements
geometry – how do we draw the data?
annotations – what is the context of these shapes?
Build more complex plots by adding commands and layering elements,
rather than by stacking individual points and lines e.g.
make a scatter plot, THEN
add a trend line (with inherited x, y), THEN
facet by grouping variable, THEN
change axis information
When I’m good, I’m very good; but when I’m bad, I’m better
Want to make good plots as soon as possible
Learning about Tufte’s principles [Tufte, 1983, Pantoliano, 2012]
Discuss what makes a plot good and bad
Seeing how ggplot2 code translates into graphical elements
Week 2 workshop has students making best and worst plots for a
data set, e.g.
Sie ist ein Model und sie sieht gut aus
Make use of broom package to get model summaries
Get data frames rather than summary.lm() text vomit
tidy()
parameter estimates
CIs
t test info [Greenland et al., 2016]
glance()
everything else
ggplot2::fortify()
regression diagnostic info instead of plot.lm()
stat_qq(aes(x=.stdresid)) for residual quantiles
geom_point(aes(x=.fitted, y=.resid)) for fitted vs
residuals
When you hear some feedback keep going take it higher
Positives
More confidence and students see use of maths/stats in science
Students enjoy group discussions in workshops
Some students continue using R over Excel in future units
Labs can be done online in own time
Negatives
Request for more face to face help rather than online
Labs can be done online in own time (but are they?)
Downloading of slides rather than attending/watching lectures
Things can only get better
Focus on what you want from R rather than how you do it
representing variables graphically
summarising over structure in data
tidiers for models
Statistics embedded in scientific theory [Diggle and Chetwynd, 2011]
Problem-based learning
groups of novices
supervised by tutors
discussion of various approaches
Peter J. Diggle and Amanda G. Chetwynd. Statistics and Scientific
Method: An Introduction for Students and Researchers. Oxford
University Press, 2011.
Sander Greenland, Stephen J. Senn, Kenneth J. Rothman, John B. Carlin,
Charles Poole, Steven N. Goodman, and Douglas G. Altman.
Statistical tests, p values, confidence intervals, and power: a guide to
misinterpretations. European Journal of Epidemiology, 31(4):337–350,
apr 2016. URL https://doi.org/10.1007/s10654-016-0149-3.
Mike Pantoliano. Data visualization principles: Lessons from Tufte, 2012.
URL https:
//moz.com/blog/data-visualization-principles-lessons-from-tufte.
Edward Tufte. The Visual Display of Quantitative Information. Graphics
Press, 1983.
Ronald L. Wasserstein and Nicole A. Lazar. The ASA's statement on
p-values: Context, process, and purpose. The American Statistician, 70
(2):129–133, Apr 2016. URL
https://doi.org/10.1080/00031305.2016.1154108.
H. Wickham. Advanced R. Chapman & Hall/CRC The R Series. Taylor &
Francis, 2014a. ISBN 9781466586963. URL
https://books.google.com.au/books?id=PFHFNAEACAAJ.
Hadley Wickham. A layered grammar of graphics. Journal of
Computational and Graphical Statistics, 19(1):3–28, 2010. doi:
10.1198/jcgs.2009.07098.
Hadley Wickham. Tidy data. Journal of Statistical Software, 59(1):1–23,
2014b. ISSN 1548-7660. URL
https://www.jstatsoft.org/index.php/jss/article/view/v059i10.

More Related Content

PPTX
2.mathematics for machine learning
PDF
Principal Component Analysis
PDF
Naïve Bayes Machine Learning Classification with R Programming: A case study ...
PDF
Off policy evaluation
PDF
Off policy learning
PDF
Linear Programming Problems with Icosikaipentagonal Fuzzy Number
PDF
Explanable models for time series with random forest
DOC
MATH 107 Great Stories /newtonhelp.com
2.mathematics for machine learning
Principal Component Analysis
Naïve Bayes Machine Learning Classification with R Programming: A case study ...
Off policy evaluation
Off policy learning
Linear Programming Problems with Icosikaipentagonal Fuzzy Number
Explanable models for time series with random forest
MATH 107 Great Stories /newtonhelp.com

What's hot (20)

PDF
Data Structures 2004
PPTX
PDF
Graph Neural Network for Phenotype Prediction
PPT
Spsshelp 100608163328-phpapp01
PDF
Solving dynamics problems with matlab
PDF
Differences-in-Differences
PPSX
PDF
Principal component analysis and lda
PDF
La statistique et le machine learning pour l'intégration de données de la bio...
PDF
Intuition – Based Teaching Mathematics for Engineers
PDF
ALTERNATIVE METHOD TO LINEAR CONGRUENCE
PDF
Reproducibility and differential analysis with selfish
PDF
Kernel methods for data integration in systems biology
PDF
Principal Component Analysis and Clustering
PPTX
Lect4 principal component analysis-I
PPT
PPTX
Grouping and Displaying Data to Convey Meaning: Tables & Graphs chapter_2 _fr...
PPTX
Presentation1
PDF
Selective inference and single-cell differential analysis
PDF
Decision Tree Algorithm Implementation Using Educational Data
Data Structures 2004
Graph Neural Network for Phenotype Prediction
Spsshelp 100608163328-phpapp01
Solving dynamics problems with matlab
Differences-in-Differences
Principal component analysis and lda
La statistique et le machine learning pour l'intégration de données de la bio...
Intuition – Based Teaching Mathematics for Engineers
ALTERNATIVE METHOD TO LINEAR CONGRUENCE
Reproducibility and differential analysis with selfish
Kernel methods for data integration in systems biology
Principal Component Analysis and Clustering
Lect4 principal component analysis-I
Grouping and Displaying Data to Convey Meaning: Tables & Graphs chapter_2 _fr...
Presentation1
Selective inference and single-cell differential analysis
Decision Tree Algorithm Implementation Using Educational Data
Ad

Similar to Classes without Dependencies - UseR 2018 (20)

PPTX
Machine learning ppt unit one syllabuspptx
PPT
Machine Learning: Foundations Course Number 0368403401
PPT
Machine Learning: Foundations Course Number 0368403401
PPT
Machine Learning: Foundations Course Number 0368403401
PPT
Technology Lesson Plan Assignment: Quadratice Functions
PPTX
Ict Tools In Mathematics Instruction
PPTX
EE-232-LEC-01 Data_structures.pptx
PDF
Automatically Answering And Generating Machine Learning Final Exams
PPTX
AlgorithmsModelsNov13.pptx
PPTX
[DOLAP2023] The Whys and Wherefores of Cubes
PDF
An alternative learning experience in transition level mathematics
PDF
4.80 sy it
PPT
ch12lectPP420
PPTX
22_RepeatedMeasuresDesign_Complete.pptx
DOC
Rd1 r17a19 datawarehousing and mining_cap617t_cap617
PDF
Course Syllabus For Operations Management
PPTX
313 IDS _Course_Introduction_PPT.pptx
PDF
A data science observatory based on RAMP - rapid analytics and model prototyping
PDF
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
PDF
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
Machine learning ppt unit one syllabuspptx
Machine Learning: Foundations Course Number 0368403401
Machine Learning: Foundations Course Number 0368403401
Machine Learning: Foundations Course Number 0368403401
Technology Lesson Plan Assignment: Quadratice Functions
Ict Tools In Mathematics Instruction
EE-232-LEC-01 Data_structures.pptx
Automatically Answering And Generating Machine Learning Final Exams
AlgorithmsModelsNov13.pptx
[DOLAP2023] The Whys and Wherefores of Cubes
An alternative learning experience in transition level mathematics
4.80 sy it
ch12lectPP420
22_RepeatedMeasuresDesign_Complete.pptx
Rd1 r17a19 datawarehousing and mining_cap617t_cap617
Course Syllabus For Operations Management
313 IDS _Course_Introduction_PPT.pptx
A data science observatory based on RAMP - rapid analytics and model prototyping
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
THE IMPLICATION OF STATISTICAL ANALYSIS AND FEATURE ENGINEERING FOR MODEL BUI...
Ad

Recently uploaded (20)

PDF
Computing-Curriculum for Schools in Ghana
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Institutional Correction lecture only . . .
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
Classroom Observation Tools for Teachers
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Lesson notes of climatology university.
PPTX
GDM (1) (1).pptx small presentation for students
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
RMMM.pdf make it easy to upload and study
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Cell Types and Its function , kingdom of life
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
O7-L3 Supply Chain Operations - ICLT Program
Computing-Curriculum for Schools in Ghana
Microbial diseases, their pathogenesis and prophylaxis
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Institutional Correction lecture only . . .
Abdominal Access Techniques with Prof. Dr. R K Mishra
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Classroom Observation Tools for Teachers
Pharma ospi slides which help in ospi learning
Lesson notes of climatology university.
GDM (1) (1).pptx small presentation for students
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Final Presentation General Medicine 03-08-2024.pptx
RMMM.pdf make it easy to upload and study
Microbial disease of the cardiovascular and lymphatic systems
PPH.pptx obstetrics and gynecology in nursing
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
01-Introduction-to-Information-Management.pdf
Cell Types and Its function , kingdom of life
Supply Chain Operations Speaking Notes -ICLT Program
O7-L3 Supply Chain Operations - ICLT Program

Classes without Dependencies - UseR 2018

  • 1. Classes without dependencies Teaching the tidyverse to first year science students Sam Clifford, Iwona Czaplinski, Brett Fyfield, Sama Low-Choy, Belinda Spratt, Amy Stringer, Nicholas Tierney 2018-07-12
  • 2. The student body’s got a bad preparation SEB113 a core unit in QUT’s 2013 redesign of Bachelor of Science Introduce key math/stats concepts needed for first year science OP 13 cutoff (ATAR 65) Assumed knowledge: Intermediate Mathematics Some calculus and statistics Not formally required Diagnostic test and weekly prep material Basis for further study in disciplines (explicit or embedded) Still needs to be a self-contained unit that teaches skills
  • 3. What they need is adult education Engaging students with use of maths/stats in science Build good statistical habits from the start Have students doing analysis that is relevant to their needs as quickly as possible competently with skills that can be built on Introduction to programming reproducibility separating analysis from the raw data flexibility beyond menus correcting mistakes becomes easier
  • 4. You go back to school Bad old days Manual calculation of test statistics Reliance on statistical tables Don’t want to replicate senior high school study Reduce reliance on point and click software that only does everything students need right now (Excel, Minitab) Students don’t need to become R developers Focus on functionality rather than directly controlling every element, e.g. LATEXvs Word
  • 5. It’s a bad situation Initial course development was not tidy New B Sc course brought forward Grab bag of topics at request of science academics Difficult to find tutors who could think outside “traditional” stat. ed. very low student satisfaction initially Rapid and radical redesign required tidyverse an integrated suite focused on transforming data frames Vectorisation > loops RStudio > JGR > Rgui.exe
  • 6. What you want is an adult education (Oh yeah!) Compassion and support for learners Problem- and model-based Technology should support learning goals Go further, quicker by not focussing on mechanical calculations Workflow based on functions rather than element manipulation Statistics is an integral part of science Statistics isn’t about generating p values see Cobb in Wasserstein and Lazar [2016]
  • 7. Machines do the work so people have time to think – IBM (1967) All models are wrong, but some are useful – Box (1987)
  • 8. Now here we go dropping science, dropping it all over Within context of scientific method: Aims Methods and Materials 1. Get data/model into an analysis environment 2. Data munging Results 3. Exploration of data/model 4. Compute model 5. Model diagnostics Conclusion 6. Interpret meaning of results
  • 9. I said you wanna be startin’ somethin’ Redesign around ggplot2 ggplot2 introduced us to tidy data requirements Redesign based on Year 11 summer camp This approach not covered by textbooks at the time Tried using JGR and Plot Builder for one semester Extension to wider tidyverse Replace unrelated packages/functions with unified approach Focus on what you want rather than directly coding how to do it Good effort-reward with limited expertise
  • 10. Summer(ise) loving, had me a blast; summer(ise) loving, happened so fast R is a giant calculator that can operate on objects ggplot() requires a data frame object dplyr::summarise() to summarise a column variable dplyr::group_by() to do summary according to specified structure Copy-paste or looping not guaranteed to be MECE Group-level summary stats leads to potential statistical models Easier, less error prone, than repeated usage of =AVERAGE()
  • 11. We want the funk(tional programming paradigm) Tidy data as observations of variables with structure [Wickham, 2014b] R as functional programming [Wickham, 2014a] Actions on entire objects to do things to data and return useful information Students enter understanding functions like y(x) = x2 function takes input function returns output e.g. mean(x) = i xi/n Week 4: writing functions to solve calculus problems magrittr::%>% too conceptually similar to ggplot2::+ for novices to grasp in first course
  • 12. Like Frankie sang, I did it my way What’s the mean gas mileage for each engine geometry and transmission type for the 32 cars listed in 1974 Motor Trends magazine? Loops For each of the pre-computed number of groups, subset, summarise and store how you want tapply() INDEX a list of k vectors, 1 summary FUNction, returns k-dimensional array dplyr specify grouping variables and which sum- mary statistics, returns tidy data frame ready for model/plot
  • 13. Night of the living baseheads Like all procedural languages, plot() has one giant list of arguments Focus is on how plot is drawn rather than what you want to plot Inefficiency of keystrokes re-stating the things being plotted setting up plot axis limits loop counters for small multiples, etc.
  • 14. Toot toot, chugga chugga, big red car Say we want to plot cars’ fuel efficiency against weight library(tidyverse) data(mtcars) mtcars <- mutate( mtcars, l100km = 235.2146/mpg, wt_T = wt/2.2046, am = factor(am, levels = c(0,1), labels=c("Auto", "Manual")), vs = factor(vs, levels = c(0,1), labels=c("V","S"))) plot(y=mtcars$l100km, x=mtcars$wt_T) 1.0 1.5 2.0 2.5 101520 mtcars$wt_T mtcars$l100km Fairly quick to say what goes on x and y axes More arguments → better graph xlim, ylim xlab, ylab main type, pch What if we want to see how it varies with engine geometry transmission type
  • 15. The wisdom of the fool won’t set you free yrange <- range(mtcars$l100km) xrange <- range(mtcars$wt_T) levs <- expand.grid(vs = c("V", "S"), am = c("Auto", "Manual")) par(mfrow = c(2,2)) for (i in 1:nrow(levs)){ dat_to_plot <- merge(levs[i, ], mtcars) plot(dat_to_plot$l100km ~ dat_to_plot$wt_T, pch=16, xlab="Weight (t)", xlim=xrange, ylab="Fuel efficiency (L/100km)", ylim=yrange, main = sprintf("%s-%s", levs$am[i], levs$vs[i]))} 1.0 1.5 2.0 2.5 101520 Auto−V Weight (t) Fuelefficiency(L/100km) 1.0 1.5 2.0 2.5 101520 Auto−S Weight (t) Fuelefficiency(L/100km) 1.0 1.5 2.0 2.5 101520 Manual−V Weight (t) Fuelefficiency(L/100km) 1.0 1.5 2.0 2.5 101520 Manual−S Weight (t) Fuelefficiency(L/100km) ggplot(data = mtcars, aes(x = wt_T, y = l100km)) + geom_point() + facet_grid(am ~ vs) + theme_bw() + xlab("Weight (t)") + ylab("Fuel efficiency (L/100km)") V S AutoManual 1.0 1.5 2.0 2.5 1.0 1.5 2.0 2.5 10 15 20 10 15 20 Weight (t) Fuelefficiency(L/100km)
  • 16. One, two, princes kneel before you Both approaches do the same thing Idea base ggplot2 Plot variables Specify vectors Coordinate system de- fined by variables Small multiples Loops, subsets, par facet_grid Common axes Pre-computed Inherited from data V/S A/M annotation Strings Inherited from data Axis labels Per axis set For whole plot Focus on putting things on the page vs representing variables
  • 17. I got a grammar Hazel and a grammar Tilly Plots are built from [Wickham, 2010] data – which variables are mapped to aesthetic elements geometry – how do we draw the data? annotations – what is the context of these shapes? Build more complex plots by adding commands and layering elements, rather than by stacking individual points and lines e.g. make a scatter plot, THEN add a trend line (with inherited x, y), THEN facet by grouping variable, THEN change axis information
  • 18. When I’m good, I’m very good; but when I’m bad, I’m better Want to make good plots as soon as possible Learning about Tufte’s principles [Tufte, 1983, Pantoliano, 2012] Discuss what makes a plot good and bad Seeing how ggplot2 code translates into graphical elements Week 2 workshop has students making best and worst plots for a data set, e.g.
  • 19. Sie ist ein Model und sie sieht gut aus Make use of broom package to get model summaries Get data frames rather than summary.lm() text vomit tidy() parameter estimates CIs t test info [Greenland et al., 2016] glance() everything else ggplot2::fortify() regression diagnostic info instead of plot.lm() stat_qq(aes(x=.stdresid)) for residual quantiles geom_point(aes(x=.fitted, y=.resid)) for fitted vs residuals
  • 20. When you hear some feedback keep going take it higher Positives More confidence and students see use of maths/stats in science Students enjoy group discussions in workshops Some students continue using R over Excel in future units Labs can be done online in own time Negatives Request for more face to face help rather than online Labs can be done online in own time (but are they?) Downloading of slides rather than attending/watching lectures
  • 21. Things can only get better Focus on what you want from R rather than how you do it representing variables graphically summarising over structure in data tidiers for models Statistics embedded in scientific theory [Diggle and Chetwynd, 2011] Problem-based learning groups of novices supervised by tutors discussion of various approaches
  • 22. Peter J. Diggle and Amanda G. Chetwynd. Statistics and Scientific Method: An Introduction for Students and Researchers. Oxford University Press, 2011. Sander Greenland, Stephen J. Senn, Kenneth J. Rothman, John B. Carlin, Charles Poole, Steven N. Goodman, and Douglas G. Altman. Statistical tests, p values, confidence intervals, and power: a guide to misinterpretations. European Journal of Epidemiology, 31(4):337–350, apr 2016. URL https://doi.org/10.1007/s10654-016-0149-3. Mike Pantoliano. Data visualization principles: Lessons from Tufte, 2012. URL https: //moz.com/blog/data-visualization-principles-lessons-from-tufte. Edward Tufte. The Visual Display of Quantitative Information. Graphics Press, 1983. Ronald L. Wasserstein and Nicole A. Lazar. The ASA's statement on p-values: Context, process, and purpose. The American Statistician, 70 (2):129–133, Apr 2016. URL https://doi.org/10.1080/00031305.2016.1154108.
  • 23. H. Wickham. Advanced R. Chapman & Hall/CRC The R Series. Taylor & Francis, 2014a. ISBN 9781466586963. URL https://books.google.com.au/books?id=PFHFNAEACAAJ. Hadley Wickham. A layered grammar of graphics. Journal of Computational and Graphical Statistics, 19(1):3–28, 2010. doi: 10.1198/jcgs.2009.07098. Hadley Wickham. Tidy data. Journal of Statistical Software, 59(1):1–23, 2014b. ISSN 1548-7660. URL https://www.jstatsoft.org/index.php/jss/article/view/v059i10.