Blog Content

  • [R] 결측값 데이터 다루기

    Category Statistics/R on 2018. 4. 25. 12:54

    R_Missing_Values.md 1. 결측값 단순 삭제 na.omit() 결측값이 있는 행을 삭제하는 함수 example > dat dat a b c d 1 1 5 a e 2 2 6 b 3 3 7 c f 4 4 NA g > dat dat a b c d 1 1 5 a e 3 3 7 c f 2행, 4행이 삭제된 것을 확인할 수 있다. 2. Multiple Imputation 다중대체법 m번의 대치를 통해 m개의 가상 자료를 만들어서 대체하는 방법이다. Multiple imputation is a statistical technique for analyzing incomplete data sets, that is, data sets for which some entries are missing. Appli..

    Read more
  • R Data Structure 데이터 구조

    Category Statistics/R on 2018. 4. 25. 12:25

    R의 Data structure 데이터 구조 종류 Scalar : element가 1개인 vector이다. # scalar 만들기 a mylist[[3]] [1] "010-1234-1234" "010-2345-5678" "010-9876-5673" > mylist$info[1] [1] "Tom" ​

    Read more
  • R을 이용한 Selenium 실행 (Windows 10 기준)

    Category Statistics/R on 2017. 9. 7. 14:58

    1. Selenium을 사용하는 이유 Selenium은 GET이나 POST로 가져오기 힘든 경우 사용하면 편리하다. 예를 들어 클릭해서 로그인 후 내용을 크롤링 한다든지, 검색어를 입력해서 크롤링 하는 경우, 웹표준을 지키지 않아서 크롤링이 어려운 경우 등에 사용하면 편리하다. 2. R을 이용하여 Selenium 실행하기 *** Selenium을 사용하려면 사전에 JAVA가 설치 되어 있어야 한다. 1) 파일을 아래 링크를 통해 다운받는다. 저장은 아래 이미지와 같이 같은 폴더를 생성하여 저장한다. selenium standalone server gecko driver chrome driver http://selenium-release.storage.googleapis.com/index.html http..

    Read more
  • An Introduction to Mathematics PDF

    Category Statistics on 2015. 1. 31. 10:01

    An Introduction to Mathematics - Alfred North Whitehead

    Read more
  • Statistics Curriculum

    Category Statistics on 2015. 1. 25. 21:09

    Read more