달력

3

« 2025/3 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
2019. 5. 15. 14:51

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
:
Posted by 시스메
2019. 5. 15. 14:43

핵밀도추정 스크랩 공부/통계학2019. 5. 15. 14:43

'공부 > 통계학' 카테고리의 다른 글

핸즈 온 머신러닝 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
:
Posted by 시스메
2019. 5. 15. 14:31

NNAR 기초 공부/통계학2019. 5. 15. 14:31

'공부 > 통계학' 카테고리의 다른 글

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
:
Posted by 시스메
2019. 5. 8. 01:50

Spectral analysis 공부/통계학2019. 5. 8. 01:50

 

'공부 > 통계학' 카테고리의 다른 글

핵밀도추정 스크랩  (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
:
Posted by 시스메
2019. 4. 30. 18:25

핸즈 온 머신러닝 6장 decision tree 공부/통계학2019. 4. 30. 18:25

 

 

'공부 > 통계학' 카테고리의 다른 글

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
:
Posted by 시스메
2019. 3. 21. 20:54

harmonic regression 공부/통계학2019. 3. 21. 20:54

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 statisticQ=Tk=1hrk2,where h is the maximum lag being considered and T is the number of observations. If each rk is close to zero, then Q will be small. If some rkvalues are large (positive or negative), then Q will be large. We suggest using h=10 for non-seasonal data and h=2m for seasonal data, where m is the period of seasonality. However, the test is not good when h is large, so if these values are larger than T/5, then use h=T/5

A related (and more accurate) test is the Ljung-Box test, based onQ=T(T+2)k=1h(Tk)1rk2.

Again, large values of Q 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
:
Posted by 시스메


'공부 > 통계학' 카테고리의 다른 글

핸즈 온 머신러닝 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
:
Posted by 시스메
2019. 1. 28. 13:31

핸즈온 머신러닝 시작 sklearn 공부/통계학2019. 1. 28. 13:31

from sklearn.datasets import fetch_openml
mnist =  fetch_openml(name='mnist_784', version=1)

이렇게 openml로 바뀌었다고 해서 했는데 임포트 오류가 나네요.


fetch_openml 이 scikit-learn 의 최신버전(0.20.x)에만 있는 것 같습니다.


import sklearn
sklearn.__version__

이렇게 해서 버전 확인해 보시고, 0.20 미만이라면

pip install -U scikit-learn 

또는 (anaconda 환경에서 conda 로 설치한 것이라면)

conda update scikit-learn 

으로 scikit-learn 패키지를 최신버전으로 업데이트하고 해 보세요.


'공부 > 통계학' 카테고리의 다른 글

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
:
Posted by 시스메
2019. 1. 14. 13:33

AR(2) stationary condition 공부/통계학2019. 1. 14. 13:33

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)


:
Posted by 시스메
2018. 12. 28. 10:45

sqlyog 에러메시지 access denied for user 공부/통계학2018. 12. 28. 10:45

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
:
Posted by 시스메