Command Mode (press Esc to enable) Enter : enter edit mode Shift-Enter : run cell, select below Ctrl-Enter : run cell Alt-Enter : run cell, insert below Y : to code M : to markdown R : to raw 1 : to heading 1 2 : to heading 2 3 : to heading 3 4 : to heading 4 5 : to heading 5 6 : to heading 6 Up : select cell above K : select cell above Down : select cell below J : select cell below A : insert c..
R에서 결측치 한눈에 살펴보기 step1 load dataset and using summary function step2 heatmaply stpe3 visdat(vis_dat, vis_miss) step1 load dataset and using summary function df_v4
R studio에서 .sas7bdat형식 데이터 불러오기 국민건강영양조사가 .sas7bdat 형식으로 되어 있음 Summary 1-1. sas7bdat 패키지 설치 및 등록 1-2. read.sas7bdat() 이용 및 확인 2-1. haven 패키지 2-2. read_sas() 1-1. sas7bdat 패키지 설치 및 등록 install.packages("sas7bdat") library(sas7bdat) 1-2. read.sas7bdat() 이용 및 확인 df_12
주피터 노트북에 아나콘다 환경 추가하기 in linux 리눅스 기반에서 설정법임 Summary 1. 커널 리스트 확인 2. 아나콘다 환경 생성 및 활성화 3. ipykernel 설치 4. ipykernel 환경설정 5. 커널 리스트 확인 1. 커널 리스트 확인 $ jupyter kernelspec list output 2. 아나콘다 환경 생성 및 활성화 $ source activate myenv 3. ipykernel 설치 $ python -m pip install ipykernel 4. ipykernel 환경설정 #python3 $ python -m ipykernel install --user --name myenv # install as 'python3' $ python -m ipykernel ins..
아나콘다 리눅스 서버에 설치하는 방법 간단함 step1 : 리눅스에 맞는 최신버전 확인 step2 : .sh 파일 다운 step3 : verify the data integrity of the install step4 : run conda3.sh step5 : 설치 되었는지 확인 step1 : 리눅스에 맞는 최신버전 확인 www.anaconda.com/products/individual#linux Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anac..
덴하덴하 ~ machine learning modeling을 할때 preprocessing을 한 후 각 피처들간의 correlation을 보는게 좋음 detail source : towardsdatascience.com/feature-selection-correlation-and-p-value-da8921bfb3cf Feature selection — Correlation and P-value Often when we get a dataset, we might find a plethora of features in the dataset. All of the features we find in the dataset might not be… towardsdatascience.com 각 피처들간의 연관성이 깊..