Class page
Mon Thur 10:30
Week 01: Sep 2, 5
Week 02: Sep 9, 12
Week 03: Sep 16, 19
Week 04: Sep 23, 26
Week 05: Sep 30, Oct 3
Week 06: Oct 7, 10
Week 07: Oct 14, 17
Week 08: Oct 21, 24
Week 09: Oct 28, 31
Week 10: Nov 4, 7
Week 11: Nov 11, 14
Week 12: Nov 18, 21
Week 13: Nov 25, 28
Week 14: Dec 2, 5
Week 15: Dec 9, 12
Week 16: Dec 16, 19
Installing R
Using a data set: mtcars
z-test and t-test simulation in r
동영상 시청. 아래 동영상은 교재의 2장 이후를 다루는 내용이면서 계산적인 통계에 대해서 공부하기 위해서 꼭 필요한 내용이므로 숙지하시기 바랍니다. 동영상이 길어서 이 부분은 3주차에도 계속 시청합니다.
$$ \text{Inferential Statistics} = \frac {\text{Effects}} {\text{Error}} $$
실제차이를 랜덤차이로 나눈 비율
\begin{eqnarray*}
s^2 & = \frac {SS}{df} \\
\sqrt{s^2} & = s
\end{eqnarray*}
Group forming
Grouping (꼭 할 것)
영상
Knowledge to understand hypothesis testing
Group Assignment
가설 만들어 보기
영상
문서 + 텍스트
out of class
—-
Is your hypothesis based on your research on a topic? Can your hypothesis be tested? Does your hypothesis include independent and dependent variables?from https://www.verywellmind.com/what-is-a-hypothesis-2795239
kinds of hypothesis Identifying IV and DV (and Intervening Variable) measurement (operationalization :: 조작화)
Assignment for all groups
아래 가설을 그룹디스커션포럼에 작성할 것. 포럼은 아직 생성전입니다.
Group assignment 1
Group assignment 2
가설 만들어 보기
t-test 와 ANOVA 가설 만들기
영상 시청 (8주차까지 볼 동영상입니다)
correlation
regression
multiple regression
이하는 다음 주에
Partial and semipartial correlation
Dummy variable
Statistical Regression Methods
Sequential Regression
Mediation Analysis
개인과제
simple regression example 의 데이터를 R에 불러와서 다음을 손으로 계산하시오.
x <- ph83 y <- spec83 이라고 할 때 ss.y ss.x df.x df.y # or df.tot sp.xy cov.xy cor.xy b a y.pred ss.tot ss.reg ss.res df.tot # or df.y df.reg df.res f.cal f.prob se.b t.b t.b.prob
lm.beta(m.sa.ytfbnp)
dat <- read.csv("http://commres.net/wiki/_media/regression01-bankaccount.csv")
str(dat)
dat.lm <- lm(account~fammember, data=dat)
영상
correlation
regression
multiple regression
Partial and semipartial correlation
dummy variable in r
Statistical Regression Methods
Sequential Regression
그룹과제 1
직접 게시글을 작성한다면 한글글씨체 옵션이 없기 때문에 Courier New 체를 사용하면 됩니다.
library(psych) saq <- read.csv("http://commres.net/wiki/_media/r/efa.csv") head(saq) round(cov(saq),2)
install.packages("GPArotation") library(GPArotation)
orthogonal rotations: "none", "varimax", "quartimax", "bentlerT", "equamax", "varimin", "geominT" and "bifactor" oblique transformations of the solution: "Promax", "promax", "oblimin", "simplimax", "bentlerQ, "geominQ" and "biquartimin", "cluster"
과제 2.
Social Network Analysis in R space
fa
social network analysis
sna and clustering ←- 11/21 목요일 수업에서 쓴 R 스크립트
social network analysis tutorial
sna in r
Stanford University egs.
Final-term covers:
계산문제를 제외하고 어떤 상황에서 어떤 통계방법을 써야하는지에 대해서와 아웃풋을 해석하거나 아웃풋에서 답을 유추하는 문제 등은 아래 범위에서 나올 수 있습니다.
t-test, ANOVA, Factorial ANOVA
그 외에 수업시간에 다룬 부분은 또한 포함합니다.
correlation
regression
multiple regression
partial and semipartial correlation
using dummy variables
factor analysis
social network analysis
sna tutorial
sna in r
SNA e.g. lab 06
Some R outputs will be used to ask the related concepts and ideas (the above).