Training on Educational Research and Statistical Analysis for Teachers – Summary of Sessions 21–30 and Reflections

힘센캥거루
2026년 1월 11일(수정됨)
3
19

Today I’d like to write down what I remember from sessions 21–30 of the educational research and statistical analysis course for teachers, along with some reflections.

1. logit and logistic regression analysis

At first, when I heard “logistic regression analysis,” I thought it was something very advanced, but it turned out to be linear regression that follows the logit.

I didn’t expect the concept of the logit, which I encountered when learning about LLMs before, to appear here as well.

Odds are the probability of an event occurring divided by the probability of it not occurring.

And if you take the log of this, you get the logit.

The reason for using the logit is that the multiplicative rate of increase or decrease in the logit remains constant for a given change in the predictor.

However, because the meaning of the logit graph itself is not easy to interpret, you need to convert it back into odds and then probabilities when interpreting the results.

The way to do this in R is very simple: just take the lm function you’ve been using and put a g in front so it becomes glm.

data <- read.csv(file.choose())
m1 <- glm(Y ~ X, data=data, family = binomial)

2. Lord’s paradox and how to interpret it

Training on Educational Research and Statistical Analysis for Teachers – Summary of Sessions 21–30 and Reflections-2

Lord’s paradox is a discussion about how interpretations change depending on the analysis method when looking at weight change graphs for two groups, male and female.

It’s called a paradox because different research results arise from the same data.

One researcher used the two groups to conduct an analysis of covariance (ANCOVA), while another used the difference between final weight and initial weight as the outcome.

This difference stems from the research questions.

Training on Educational Research and Statistical Analysis for Teachers – Summary of Sessions 21–30 and Reflections-3

The former, using ANCOVA, dealt with “the effect of dieting if men and women started from the same weight,” while the latter dealt with “the average amount of weight change in men and women after dieting.”

In conclusion, the two methods of analysis answer different research questions, and which method is more valid depends on the research purpose and interpretive perspective.

This suggests that in research, you must choose the appropriate method of testing according to the purpose and direction of the study.

3. Final thoughts on the training in educational research and statistical analysis for teachers

When I first applied for the course, I thought it wouldn’t be very different from the research methodology course I took in graduate school, but it turned out to be extremely helpful.

If graduate school covered educational research in general, this online course felt like it zoomed in on the parts needed for writing a thesis and went through them in detail all the way to practical application.

It mainly dealt with statistical analyses related to linear regression, and I feel that, in the end, linear regression is the most practically useful statistical analysis that teachers can conduct.

I also wondered at first why I needed to learn R, but after taking the class I immediately installed R and R Studio.

I can’t do research without R now.

Training on Educational Research and Statistical Analysis for Teachers – Summary of Sessions 21–30 and Reflections-4

The only downside was that the lecture materials didn’t include csv files, which made it difficult to actually practice statistical analysis in R.

I did get some data from Kaggle and tried it out myself, but for someone not used to this kind of analysis, it might have been a bit hard to follow.

Training on Educational Research and Statistical Analysis for Teachers – Summary of Sessions 21–30 and Reflections-5

In any case, the course was good.

If someone asked me whether I’d recommend the class, my answer would definitely be YES.

Just taking this one course would be a huge help when writing a thesis.

Lastly, I pray that I’ll be able to write a good thesis this year.

관련 글

모의고사 일람표가 대교협, 유니브, 김영일에 업로드 안될 때 - PDF로 저장
모의고사 일람표가 대교협, 유니브, 김영일에 업로드 안될 때 - PDF로 저장
모의고사를 치고난 뒤, 평가원에서 성적표를 인쇄물, 혹은 PDF 형태로 출력할 수 있다.PDF로 받은 파일들을 보면 간혹 내부에 아무런 데이터가 없고 이미지 형태로 있을 때에는 성적을 처리하기가 무척 난감하다.이럴 때는 아무리 입시 프로그램에 성적을 업로드하려고 해도 ...
How to Operate a Robot Vacuum Cleaner in the Classroom
How to Operate a Robot Vacuum Cleaner in the Classroom
It’s already been four years since I started using a robot vacuum cleaner in my classroom.This year, my goal is to have the students take full respons...
Automating School Work – Automating Draft Assessment Plans with Spreadsheets
Automating School Work – Automating Draft Assessment Plans with Spreadsheets
With the 2022 revised curriculum, the number of subjects has increased, and as a result we now have to rewrite the assessment plan every semester.The...
Review of Offline Participation in the 2026 Dongguk University Future Society Teacher Competency Enhancement Forum
Review of Offline Participation in the 2026 Dongguk University Future Society Teacher Competency Enhancement Forum
One of the teachers introduced a training program that looked interesting.It was AI-related training held at Dongguk University.AI training is nice, b...
Automating School Work – Using AI to Check Subject-Specific Remarks in Student Records
Automating School Work – Using AI to Check Subject-Specific Remarks in Student Records
If I had to pick the most meaningless, exhausting, and boring task at school, I would choose checking student records.In middle school, the student re...
Review of Visiting the Education Korea Expo (2026)
Review of Visiting the Education Korea Expo (2026)
I happened to find information about the Education Korea Expo through Instagram.Last year, it overlapped with another event so I couldn’t go, which ma...

댓글을 불러오는 중...