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

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

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.

관련 글

2026년 동국대학교 미래사회 교원역량 강화 포럼 오프라인 참여 후기
2026년 동국대학교 미래사회 교원역량 강화 포럼 오프라인 참여 후기
어느 선생님이 재미있어 보이는 연수를 하나 소개시켜 주셨다.동국대에서 진행하는 AI 관련 연수였다.AI인 것도 좋인데 연수가 호텔에서?이건 무조건 가야 한다 싶었다.해당일 연수가 열리자 마자 신청해서 오프라인으로 참석하게 되었다.1. 앰배서더 서울 풀만 호텔처음에는 접...
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...
Preview of Earth Science Content in the 2022 Revised Curriculum - Unit 3: Celestial Bodies in the Solar System and the Evolution of Stars and the Universe
Preview of Earth Science Content in the 2022 Revised Curriculum - Unit 3: Celestial Bodies in the Solar System and the Evolution of Stars and the Universe
This time, it’s the last stop in our tour of Earth Science.We’re going to look at Unit 3.1. Content structureIn the content structure of Unit 3, the t...
National Education Commission Overhauls Completion Criteria for High School Credit System
National Education Commission Overhauls Completion Criteria for High School Credit System
[This article was produced using AI based on a live video stream.]Attendance-focused vs. achievement-reflecting… “Finalizing the system without suppor...
Educational Research and Statistical Analysis Training for Teachers - Collection of R Practices from Sessions 13–20
Educational Research and Statistical Analysis Training for Teachers - Collection of R Practices from Sessions 13–20
Previously, I used to wonder whether I really needed to learn R when I already knew Python.Through this training, I realized that there’s actually no...
Preview of the 2022 Revised Earth Science Curriculum – Unit 2 Earth’s History and the Rocks of the Korean Peninsula
Preview of the 2022 Revised Earth Science Curriculum – Unit 2 Earth’s History and the Rocks of the Korean Peninsula
In the previous post, we looked at the contents of Unit 1 along with some questions.This time as well, let’s continue with that post and take a look a...

댓글을 불러오는 중...