Jupyter 설치하기
etc./Install and Setup2024. 8. 12. 18:08Jupyter 설치하기

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...

Miniconda 설치하기
etc./Install and Setup2024. 8. 12. 17:13Miniconda 설치하기

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..

[STL] std::ranges::find
C++/STL2024. 6. 23. 23:07[STL] std::ranges::find

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:..

[STL] std::ranges::minmax_element
C++/STL2024. 6. 23. 22:48[STL] std::ranges::minmax_element

1. 개요std::ranges::minmax_element 함수는 C++20부터 표준 라이브러리에 추가된 함수로, 주어진 범위에서 가장 작은(minimum) 요소와 가장 큰(maximum) 요소의 반복자를 동시에 반환한다.2. templatetemplateauto minmax_example(const Range& range) { return std::ranges::minmax_element(range);}2.1. 매개 변수 range: 검색할 요소들의 범위를 나타내는 반복자들이다.comp (선택적): 비교 조건을 나타내는 함수 객체(람다 함수)이다. 기본적으로는 2.2.반환값std::pair 객체를 반환한다. std::pair는 두 개의 반복자를 포함하며, 첫 번째 반복자는 가장 작은 요소를 가리키..

[STL] std::ranges::any_of
C++/STL2024. 6. 23. 22:40[STL] std::ranges::any_of

1. 개요std::ranges::any_of 함수는 C++20부터 표준 라이브러리에 추가된 함수로, 주어진 범위(range)에서 하나 이상의 요소가 주어진 조건을 만족하는지 검사한다.2. templatetemplatebool any_of_example(const Range& range, UnaryPredicate predicate) { return std::ranges::any_of(range, predicate);}2.1. 멤버함수std::ranges::any_of(range, predicate): 주어진 범위에서 하나 이상의 요소가 unary_predicate 조건을 만족하는지 검사한다.range: 검사할 요소들의 범위를 나타내는 반복자들이다.predicate: 각 요소를 평가할 조건을 나타내는..

728x90
반응형
image