바이올린 그림 vs 박스그림 install.packages("vioplot") library(vioplot) # 표준정규분포를 이용한 예제 par(mfrow=c(1,2)) x1 <- rnorm(2000,0,1) boxplot(x1) vioplot(x1, col="red") 참고 : [1]: https://wsyang.com/2011/04/violin-plot-in-r/ "[R] boxplot의 새로운 형태 violin plot" Bite Bits/R 2019.12.21
AIC, BIC 두 개의 서로 다른 선형 회귀 모형의 성능을 비교할 때는 보통 다음과 같은 선택 기준을 사용한다. 조정 결정 계수 (Adjusted determination coefficient) AIC (Akaike Information Criterion) BIC (Bayesian Information Criterion) 조정 결정 계수와 함께 많이 쓰이는 모형 비교 기준은 최대 우도에 독립 변수의 갯수에 .. Bite Bits/R 2019.12.21
다항 로지스틱 모델 R에서는 nnet:multinom()을 사용해 다항 로지스틱 회귀 모델을 작성할 수 있다. library(nnet) model <- nnet::multinom(Species ~. , data=iris) head(fitted(model)) # 적합 확인 > head(fitted(model)) # 적합 확인 setosa versicolor virginica 1 1.0000000 1.526406e-09 2.716417e-36 2 0.9999996 3.536476e-07 2.883729e-32 3 1.0000000 4.443506e-08 6.103424e.. Bite Bits/R 2019.12.21