Hi everyone, welcome to the course. This is the introduction to R course at Ewha Womans University.
R is a great programming language for statistical analysis and data science. I hope you enjoy R in this course and find many useful applications for your own field.
This course is designed for students who don’t have any programming background in social science.
In this lecture note, this font
represents R commands, variable names, and package names.
In order to maximize your learning in this semester, you should read the weekly reading assignment in our textbook, R for Data Science.
If you have any question on this lecture (e.g., errors in running R, questions about quiz), please send your questions to r.ewha.questions.2021@gmail.com. Then, Iand TA(Teaching Assistant) will answer your questions.
In this lecture notes, I will include interactive code chunks provided by DataCamp that will allow you to actually run and practice R codes within this lecture notes. Please type 3+4
and click Run
button to ask R to calculate the expression.
Before talking about R and social problems, let’s talk about the types of data analysis first.
Leek & Peng(2015) categorized data analysis into the 6 types as presented in the table below, and emphasized “mistaking the type of question being considered is the most common error in data analysis.”
Types of Data Analysis | Questions being asked |
---|---|
Descriptive data analysis(기술통계분석) | seek to summarize(요약) the measurement in a single data set without further interpretation(e.g., US Census) |
Exploratory data analysis(탐색적자료분석) | search for discoveries(발견), trends, correlations, or relationships between the measurements to generate ideas or hypotheses(e.g., The four-star planetary system Tatooine) |
Inferential data analysis(추론분석) | quantify whether an observed pattern will likely hold beyond the data set in hand or in population(모집단)(e.g., a study of whether air pollution correlates with life expectancy in US) |
Predictive data analysis(예측분석) | predict(예측) another measurement (the outcome) on a single person or unit(e.g., prediction of how people will vote in an election) |
Causal data analysis(인과관계분석) | seek to find out what happens to one measurement on average if you make another measurement change(인과, e.g., causal relationship between smoking and cancer) |
Mechanistic data analysis(결정론적관계분석) | seek to show that changing one measurement always and exclusively leads to a specific, deterministic behavior in another(인과, e.g., wing design) |
from Leek & Peng(2015)
Real Question Type | Perceived Question Type | Phrase Describing Error |
---|---|---|
Inferential | Causal | Correlation does not imply causation |
Exploratory | Inferential | Data Dredging (or p-hacking) |
Exploratory | Predictive | Overfitting(과적합) |
Descriptive | Inferential | of 1 analysis |
“In nonrandomized experiments, it is usually only possible to determine the existence of a relationship between two measurements, but not the underlying mechanism or the reason for it.”
“Historically, social scientists have sought out explanations of human and social phenomena that provide interpretable causal mechanisms, while often ignoring their predictive accuracy. We argue that the increasingly computational nature of social science is beginning to reverse this traditional bias against prediction.” (Hofman et al., 2017)