finance-with-python-ai-ml-week

(★ 10)

Finance with Python - Learn Python by diving into details of Stock market and build a ML model to predict Stock Prices

파일 탐색기

  • .gitignore
  • README.md
  • requirements.txt

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

jupyter

설명 보기 ▼

코드, 시각화 및 노트를 포함한 문서를 생성하고 공유할 수 있는 웹 애플리케이션.
주로 데이터 분석, 과학 컴퓨팅 및 머신 러닝에 사용됩니다.
더 많은 정보: <https://docs.jupyter.org/en/latest/use/jupyter-command.html>.

jupyter notebook

현재 디렉토리에서 Jupyter 노트북 서버 시작:

jupyter notebook {{path/to/file}}.ipynb

특정 Jupyter 노트북 열기:

jupyter nbconvert --to {{html|markdown|pdf|script|...}} {{path/to/file}}.ipynb

특정 Jupyter 노트북을 다른 형식으로 내보내기:

🔍

pip freeze

설명 보기 ▼

List installed packages in requirements format.

pip freeze

List installed packages:

pip freeze > requirements.txt

Write installed packages to the `requirements.txt` file:

pip freeze {{[-l|--local]}}

List installed packages in a virtual environment, excluding globally installed packages:

🔍

pip install

설명 보기 ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

python {{path/to/file.py}}

특정 Python 파일 실행:

python -i {{path/to/file.py}}

특정 Python 파일 실행 후 REPL 시작:

🔍

where

설명 보기 ▼

명령의 모든 알려진 인스턴스를 보고.
이는 `$PATH` 환경 변수에 있는 실행 파일, 별칭 또는 셸 내장 명령일 수 있습니다.
더 많은 정보: <https://zsh.sourceforge.io/Doc/Release/Shell-Builtin-Commands.html>.

where {{command}}

명령의 모든 인스턴스 찾기:

tldr where-object

파일 패턴의 위치 표시:

where {{file_pattern}}

파일 크기와 날짜를 포함하여 파일 패턴의 위치 표시:

// repository documentation