Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

27
Quantitative Research in Education Sohee Kang Ph.D. , lecturer Math and Statistics Learning Centre

Transcript of Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Page 1: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

QuantitativeResearch in Education

Sohee KangPh.D. , lecturer

Math and Statistics Learning Centre

Page 2: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Outline

• Analyzing Educational Research Data• Collecting data• Using R (R commander) for describing

and testing hypotheses

Page 3: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Analyzing Research Data• Example: a high school research team was interested in

increasing student achievement by implementing a study skills program.

• The first thing this team did was develop a survey, which all students completed.

• Representing data made it quite easy to see what study skills students were already using and which ones they would like to learn more about.

Page 4: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Collecting Data

• Observational Data

Ex) survey data• Design of Experiments

Ex) Classroom experiments

Page 5: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Let’s look at Survey questionnaire

• Census at School Canada • Website link: http://

www.censusatschool.ca/

Page 6: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Census at School – Canada Questionnaire – Grades 9 to 12 2010/201 (selected questions)

Page 7: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.
Page 8: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.
Page 9: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Random Data Selector

• http://rds.censusatschool.org.uk/• Country: Canada• Email: ex)[email protected]• School/institution: University of Toronto

Scarborough• Type the number on the screen

Page 10: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Select a sample size = 200

Page 11: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Which software to use to analyze data?

R is a language and environment for statistical computing and graphics.

R can be used for: data manipulation, data analysis, creating graphs, designing and running computer simulations.

Page 12: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Why R?• R is FREE: As an open-source project, you can

use R free of charge.

• R is POWERFUL: Leading academics and researches from around the world use R to develop the latest methods in statistics, machine learning, and predictive modeling.

Page 13: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Three windows in RConsole Editor Graphics

Page 14: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Writing in R is like writing in English

Jump three times forward

Action Modifiers

Page 15: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Generate a sequence from 5 to 20 with values spaced by 0.5

Action Modifiers

Writing in R is like writing in English

Page 16: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

seq(from=5, to=20, by=0.5)

Action Modifiers

Function Arguments

Generate a sequence from 5 to 20 with values spaced by 0.5

Writing in R is like writing in English

Page 17: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

seq(from = 5, to = 20, by = 0.5)

Basic anatomy of an R command

Function

Open parenthesis

Argumentname

Equal sign

Other arguments

CommaClose

parenthesis

Argumentvalue

Page 18: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Writing R code:

1. Read a downloaded file2. Choose the selected Variables:

Province, Gender, Language, Height, Physical Days, Smoke, Favorite Subject, Pressure, Travel, Communication

Page 19: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Descriptive Statistics

• Categorical Variables:

Province, Gender, Favorite Subject, Travel, Pressure, Communication

• Quantitative Variables:

Language, Height, Physical Days, Smoke

Page 20: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Graphs

• For Categorical variables:

Bar plot and Pie chart

• For Quantitative variables:

Histogram and boxplot

Page 21: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Summary Statistics

• For Categorical variables:

Frequency, relative frequency

• For Quantitative variables:

Mean, Median, SD (Standard deviation)

Page 22: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Relationship between Two Variables

• Categorical vs Categorical:

Contingency Tables• Categorical vs Quantitative:

Tables of Statistics (side by side boxplot)• Quantitative vs Quantitative

Correlation (Scatter plot)

Page 23: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Pre-Post Test: Paired T-test

• Research question type: Difference between two related (paired or matched) variables.

• What kind of variables? Quantitative (Continuous)

• Common Applications: Comparing the means of data from two related samples; say, observations before and after an intervention on the same participant.

Page 24: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Example:Research question: Is there a difference in mark following a teaching

intervention?

Student Before Mark After Mark 1 18 22 2 21 25 3 16 17 4 22 24 5 19 16 6 24 29 7 17 20 8 21 23 9 23 19 10 18 20 11 14 15 12 16 15 13 16 18 14 19 26 15 18 18 16 20 24 17 12 18 18 22 25 19 15 19

20 17 16

Example Data

Page 25: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Hypotheses:

• Null hypothesis

H0: There is no difference in mean pre-post marks

• Alternative hypothesis

Ha: There is a difference in mean pre-post marks

Page 26: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Steps in R• Create a data file, “pre-post.txt” • Read data from R • Statistics > Means > Paired t-test

Paired t-test

data: prepost$Aftermark and prepost$Beforemarkt = 3.2313, df = 19, p-value = 0.004395alternative hypothesis: true difference in means is not equal to 095 percent confidence interval: 0.7221251 3.3778749sample estimates:mean of the differences 2.05

Page 27: Quantitative Research in Education Sohee Kang Ph.D., lecturer Math and Statistics Learning Centre.

Results:

• t test statistic value is t=3.2313 and p-value is 0.0004; there is very small probability to observe this t-test statistic value or more extreme values under the assumption that there is no mean difference.

• Conclusion: There is a statistically significant, strong evidence that teaching intervention improved marks.