data science

Topic: data science

ML? Keep in MInd!

While you are building a machine learning solution, you should answer, or at least keep in mind, the following questions: What question(s) am I trying to answer? Do I think the data collected can answer that question? What is the best way to phrase my question(s) as a machine learning problem? Have I collected enough data to represent the problem I want to solve? What features of the data did ...

Miniconda를 활용한 초경량 Python3, R Jupiter Notebook 구성

Miniconda 설치 pass Jupyter notebook 용 환경 생성 $ conda create -n notebook python=3 $ conda activate notebook $ pip install --upgrade pip Jupyter notebook 설치 $ pip install jupyter IRkernel 설치 $ conda install r-irkernel 실행 $ jupyter notebook 최소 용량으로 설치는 되나 필요한 패키지 몇 가지 추가하면 ...