1. Install Jupyter1.1. Miniconda 환경 활성화가상 환경을 먼저 활성화 해주어야 한다.conda env listconda activate ds_study 1.2. Jupyter 설치conda install jupytery 2. Install Package가상 환경에서 필요한 Package를 Install한다.2.1. ipythonconda install ipython 2.2. matplotlibconda install matplotliby 2.3. seaborninstall 중간에 'y'를 누르는게 귀찮다면 'conda install -y'로 명령어를 입력해주면 된다.conda install -y seaborn 2.4. pandasconda install -y pandas 2.5...
1. Python Version 확인cmd나 PowerShell에서 Python Version을 확인한다.python 2. Miniconda Installhttps://docs.anaconda.com/miniconda/miniconda-other-installer-links/ Latest Miniconda installer links by Python version — Anaconda documentationLatest Miniconda installer links by Python version This list of Miniconda installers is for all supported versions of Python, separated by operating system. For an arch..
1. 개요std::ranges::find 함수는 C++20에서 도입된 범위 기반 알고리즘으로, 지정된 범위 내에서 특정 값을 찾는다.1.1. std::find VS std::ranges::find1.1.1. std::find 예시#include // std::find#include #include int main() { std::vector numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9}; // std::find를 사용하여 값 5를 찾기 auto it = std::find(numbers.begin(), numbers.end(), 5); if (it != numbers.end()) { std::cout 1.1.2. std::ranges:..