finance-with-python-ai-ml-week
Finance with Python - Learn Python by diving into details of Stock market and build a ML model to predict Stock Prices
File Explorer
- Session-1.ipynb
- session_1.py
- AAPL.csv
- JPM.csv
- MSFT.csv
- Session-2.ipynb
- session_2.py
- AAPL_ohlc_chart.png
- Session-3.ipynb
- session_3.py
- Session-4.ipynb
- Session-5.ipynb
- .gitignore
- README.md
- requirements.txt
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
jupyter
View Details ▼
jupyter
Web application to create and share documents that contain code, visualizations, and notes.
Primarily used for data analysis, scientific computing, and machine learning.
jupyter notebook
Start a Jupyter notebook server in the current directory:
jupyter notebook {{path/to/file}}.ipynb
Open a specific Jupyter notebook:
jupyter nbconvert --to {{html|markdown|pdf|script|...}} {{path/to/file}}.ipynb
Export a specific Jupyter notebook into another format:
pip freeze
View Details ▼
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
View Details ▼
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
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
where
View Details ▼
where
Report all known instances of a command.
It could be an executable in the `$PATH` environment variable, an alias, or a shell builtin.
where {{command}}
Find all instances of a command:
tldr where-object
View the documentation of the equivalent PowerShell command:
where {{file_pattern}}
Display the location of file pattern:
