c:ms:2026:schedule
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| c:ms:2026:schedule [2026/03/08 15:59] – [Week01] hkimscil | c:ms:2026:schedule [2026/04/06 14:53] (current) – [Week07] hkimscil | ||
|---|---|---|---|
| Line 93: | Line 93: | ||
| 기술통계 ([[: | 기술통계 ([[: | ||
| 추론통계 ([[: | 추론통계 ([[: | ||
| - | 아래의 개념은 [[:sampling|샘플링]] 문서를 먼저 볼것 | + | 아래의 개념은 [[: |
| * 전집 ([[: | * 전집 ([[: | ||
| Line 117: | Line 117: | ||
| <WRAP half column> | <WRAP half column> | ||
| ===== Concepts and ideas ===== | ===== Concepts and ideas ===== | ||
| + | 수업 중에 사용한 R 명령어는 익혀 두어야 합니다. | ||
| + | 예, | ||
| + | < | ||
| + | > pnorm(1) | ||
| + | [1] 0.8413447 | ||
| + | > pnorm(110, 100, 10) | ||
| + | [1] 0.8413447 | ||
| + | > qnorm(.5, 100, 10) | ||
| + | [1] 100 | ||
| + | > qnorm(.975, 100, 10) | ||
| + | [1] 119.5996 | ||
| + | > pnorm(120, 100, 10) | ||
| + | [1] 0.9772499 | ||
| + | > a <- pnorm(120, 100, 10) | ||
| + | > qnorm(a, 100, 10) | ||
| + | [1] 120 | ||
| + | > | ||
| + | </ | ||
| + | |||
| [[: | [[: | ||
| [[: | [[: | ||
| Line 156: | Line 175: | ||
| * Difference | * Difference | ||
| * Association | * Association | ||
| - | * e.g., {{: | + | * e.g., {{: |
| * [[: | * [[: | ||
| Line 166: | Line 185: | ||
| * Mediating (Intervening) variable | * Mediating (Intervening) variable | ||
| * [[:Level of Measurement]] | * [[:Level of Measurement]] | ||
| - | [[Lecture note week 02]] | ||
| ===== Assignment ===== | ===== Assignment ===== | ||
| </ | </ | ||
| Line 172: | Line 190: | ||
| ====== Week03 ====== | ====== Week03 ====== | ||
| <WRAP half column> | <WRAP half column> | ||
| + | [[./ | ||
| + | |||
| 3주차 온라인 강의 동영상은 4주에 걸쳐서 보시기 바랍니다. 즉, 4주 중에 따로 동영상 올리지 않습니다. | 3주차 온라인 강의 동영상은 4주에 걸쳐서 보시기 바랍니다. 즉, 4주 중에 따로 동영상 올리지 않습니다. | ||
| Line 189: | Line 209: | ||
| ===== Concepts and ideas ===== | ===== Concepts and ideas ===== | ||
| - | |||
| - | <WRAP box> | ||
| - | - Introduction | ||
| - | - Getting and Setting the Working Directory | ||
| - | - Saving Your Workspace | ||
| - | - Viewing Your Command History | ||
| - | - Saving the Result of the Previous Command | ||
| - | - Displaying the Search Path | ||
| - | - Accessing the Functions in a Package | ||
| - | - Accessing Built-in Datasets | ||
| - | - Viewing the List of Installed Packages | ||
| - | - Installing Packages from CRAN | ||
| - | - Setting a Default CRAN Mirror | ||
| - | - Suppressing the Startup Message | ||
| - | - Running a Script | ||
| - | - Running a Batch Script | ||
| - | - Getting and Setting Environment Variables | ||
| - | - Locating the R Home Directory | ||
| - | - Customizing R | ||
| - | </ | ||
| [[:Mean]] | [[:Mean]] | ||
| [[:Mode]] | [[:Mode]] | ||
| Line 222: | Line 222: | ||
| [[:Sampling distribution]] via random [[: | [[:Sampling distribution]] via random [[: | ||
| - | * sa [[:sampling distribution | + | * sa [[:r:sampling distribution]] |
| [[:Central Limit Theorem]] | [[:Central Limit Theorem]] | ||
| Line 399: | Line 399: | ||
| </ | </ | ||
| <WRAP half column> | <WRAP half column> | ||
| - | {{: | ||
| - | 아래 두번째 그림은 population의 평균이 102 일 때 | ||
| - | 400명을 (1600명이 아니라) 샘플로 취했을 때의 | ||
| - | 샘플평균들의 집합을 그린것입니다. | ||
| - | {{: | ||
| - | |||
| - | < | ||
| - | ##### | ||
| - | mu.pop <- 100 | ||
| - | sd.pop <- 10 | ||
| - | |||
| - | set.seed(101) | ||
| - | treated.group <- rnorm(16, 112, 10) | ||
| - | treated.group | ||
| - | m.tg <- mean(treated.group) | ||
| - | m.tg | ||
| - | |||
| - | # install.packages(" | ||
| - | # library(BSDA) | ||
| - | z.test(treated.group, | ||
| - | |||
| - | mu.pop <- 100 | ||
| - | sd.pop <- 10 | ||
| - | |||
| - | set.seed(100) | ||
| - | treated.group.2 <- rnorm(16, 102, 10) | ||
| - | treated.group.2 | ||
| - | m.treated.group.2 <- mean(treated.group.2) | ||
| - | m.treated.group.2 | ||
| - | |||
| - | # install.packages(" | ||
| - | # library(BSDA) | ||
| - | z.test(treated.group.2, | ||
| - | |||
| - | set.seed(100) | ||
| - | treated.group.2 <- rnorm(1600, 102, 10) | ||
| - | treated.group.2 | ||
| - | m.treated.group.2 <- mean(treated.group.2) | ||
| - | m.treated.group.2 | ||
| - | |||
| - | # install.packages(" | ||
| - | # library(BSDA) | ||
| - | z.test(treated.group.2, | ||
| - | |||
| - | |||
| - | </ | ||
| ===== Assignment ===== | ===== Assignment ===== | ||
| Line 525: | Line 479: | ||
| [[./w07.2 factorial anova]] or two way anova | [[./w07.2 factorial anova]] or two way anova | ||
| ===== Assignment ===== | ===== Assignment ===== | ||
| - | ---- | + | |
| - | * 가설 만들어 보기 | + | |
| - | * [[http:// | + | |
| - | * One sample hypothesis [[http:// | + | |
| ===== 8주차 퀴즈 ===== | ===== 8주차 퀴즈 ===== | ||
| 8주차 정기시험기간 중에 2차 퀴즈 | 8주차 정기시험기간 중에 2차 퀴즈 | ||
| - | * 4월26일, 09:00 ~ (A, B교시) | + | |
| - | * 범위 | + | |
| - | * 처음부터 One-way ANOVA test with post hoc test 까지 (R square에 대한 설명포함) | + | |
| - | * 제 9주차 내용이지만 수업시간에 다룬 것만 시험에 나옵니다. | + | |
| - | * 동영상은 7주차까지 보셔야 합니다 | + | |
| - | * [[: | + | |
| - | * [[: | + | |
| - | * [[: | + | |
| - | * [[:Types of Variables]] | + | |
| - | * [[:Level of Measurement]] | + | |
| - | * [[:Mean]] [[:Median]] [[:Mode]] | + | |
| - | * [[: | + | |
| - | * [[:Sampling Distribution]] | + | |
| - | * [[:Central Limit Theorem]], [[: | + | |
| - | * [[: | + | |
| - | * [[: | + | |
| - | * [[: | + | |
| - | * [[:post hoc test]] | + | |
| - | + | ||
| </ | </ | ||
c/ms/2026/schedule.1772985557.txt.gz · Last modified: by hkimscil
