ensemble size and combination operators 공부/통계학2019. 5. 15. 14:51
'공부 > 통계학' 카테고리의 다른 글
개인 공부 (0) | 2019.07.17 |
---|---|
핸즈 온 머신러닝 8장 PCA 후반부 (0) | 2019.07.09 |
핵밀도추정 스크랩 (0) | 2019.05.15 |
NNAR 기초 (0) | 2019.05.15 |
Spectral analysis (0) | 2019.05.08 |
개인 공부 (0) | 2019.07.17 |
---|---|
핸즈 온 머신러닝 8장 PCA 후반부 (0) | 2019.07.09 |
핵밀도추정 스크랩 (0) | 2019.05.15 |
NNAR 기초 (0) | 2019.05.15 |
Spectral analysis (0) | 2019.05.08 |
핸즈 온 머신러닝 8장 PCA 후반부 (0) | 2019.07.09 |
---|---|
ensemble size and combination operators (0) | 2019.05.15 |
NNAR 기초 (0) | 2019.05.15 |
Spectral analysis (0) | 2019.05.08 |
핸즈 온 머신러닝 6장 decision tree (0) | 2019.04.30 |
ensemble size and combination operators (0) | 2019.05.15 |
---|---|
핵밀도추정 스크랩 (0) | 2019.05.15 |
Spectral analysis (0) | 2019.05.08 |
핸즈 온 머신러닝 6장 decision tree (0) | 2019.04.30 |
harmonic regression (0) | 2019.03.21 |
핵밀도추정 스크랩 (0) | 2019.05.15 |
---|---|
NNAR 기초 (0) | 2019.05.15 |
핸즈 온 머신러닝 6장 decision tree (0) | 2019.04.30 |
harmonic regression (0) | 2019.03.21 |
핸즈 온 머신러닝 3장 Binary Classifier (0) | 2019.01.30 |
NNAR 기초 (0) | 2019.05.15 |
---|---|
Spectral analysis (0) | 2019.05.08 |
harmonic regression (0) | 2019.03.21 |
핸즈 온 머신러닝 3장 Binary Classifier (0) | 2019.01.30 |
핸즈온 머신러닝 시작 sklearn (0) | 2019.01.28 |
A regression model containing Fourier terms is often called a harmonic regression because the successive Fourier terms represent harmonics of the first two Fourier terms.
A test for a group of autocorrelations is called a portmanteau test, from a French word describing a suitcase containing a number of items.
One such test is the Box-Pierce test, based on the following statisticwhere is the maximum lag being considered and is the number of observations. If each is close to zero, then will be small. If some values are large (positive or negative), then will be large. We suggest using for non-seasonal data and for seasonal data, where is the period of seasonality. However, the test is not good when is large, so if these values are larger than , then use
A related (and more accurate) test is the Ljung-Box test, based on
Again, large values of suggest that the autocorrelations do not come from a white noise series.
Spectral analysis (0) | 2019.05.08 |
---|---|
핸즈 온 머신러닝 6장 decision tree (0) | 2019.04.30 |
핸즈 온 머신러닝 3장 Binary Classifier (0) | 2019.01.30 |
핸즈온 머신러닝 시작 sklearn (0) | 2019.01.28 |
AR(2) stationary condition (0) | 2019.01.14 |
핸즈 온 머신러닝 6장 decision tree (0) | 2019.04.30 |
---|---|
harmonic regression (0) | 2019.03.21 |
핸즈온 머신러닝 시작 sklearn (0) | 2019.01.28 |
AR(2) stationary condition (0) | 2019.01.14 |
sqlyog 에러메시지 access denied for user (0) | 2018.12.28 |
fetch_openml 이 scikit-learn 의 최신버전(0.20.x)에만 있는 것 같습니다.
harmonic regression (0) | 2019.03.21 |
---|---|
핸즈 온 머신러닝 3장 Binary Classifier (0) | 2019.01.30 |
AR(2) stationary condition (0) | 2019.01.14 |
sqlyog 에러메시지 access denied for user (0) | 2018.12.28 |
AR(2)모델의 condition 유도하기 (0) | 2018.12.11 |
phi1 <- seq(-3,3,0.1)
phi2<-seq(-3,3,0.1)
phi <- merge(phi1,phi2)
flag<-rep(0,3721)
for(i in 1:3721){
z=polyroot(c(1, -phi$x[i],-phi$y[i]))
az=abs(z)
flag[i]=ifelse((az[1]>1 & az[2]>1),1,0)
c<-cbind(phi,flag)
plot(c$x,c$y,col=c$flag)
핸즈 온 머신러닝 3장 Binary Classifier (0) | 2019.01.30 |
---|---|
핸즈온 머신러닝 시작 sklearn (0) | 2019.01.28 |
sqlyog 에러메시지 access denied for user (0) | 2018.12.28 |
AR(2)모델의 condition 유도하기 (0) | 2018.12.11 |
no matches hat (0) | 2018.09.17 |
access denied for user 'root'@'localhost' (using password yes)
메세지에 대한 해결방안
MYSQL Command Line Client 창을 열어
sudo mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'root';
치면 비밀번호 root로 접속 가능하다
핸즈온 머신러닝 시작 sklearn (0) | 2019.01.28 |
---|---|
AR(2) stationary condition (0) | 2019.01.14 |
AR(2)모델의 condition 유도하기 (0) | 2018.12.11 |
no matches hat (0) | 2018.09.17 |
fpp2 backcasting (0) | 2018.09.10 |