Jupyter Notebooks are a popular way to create and share documents for data analytics. They are interactive, easy to share, and support a wide variety of data science tools.
When employers ask for years of experience with a language, it's not the syntax - that can be learned in a few days. It's the experience with the tools, libraries, and frameworks that takes time.
IMPORTANT: To run Jupyter within VS Code, use the Jupyter extension. Go to the Extensions pane on the left sidebar (the icon looks like four squares), searching for "Jupyter," and installing the "Jupyter" extension provided by Microsoft.
- Click "Use this template" on this example repository (if it's not a template, click "Fork" instead).
- Clone the repository to your machine: git clone example-repo-url
- Open your new cloned repository in VS Code.
Next, create and activate a virtual environment for this project. Also install additional dependencies required for this project. See requirements.txt for detailed instructions.
A. Create .venv B. Activate .venv C. Install dependencies into .venv D. Select VS Code interpreter to use .venv
- Open the provided Jupyter Notebook (
demo-notebook.ipynb
): - Create and select the notebook kernel. See requirements.txt Step E for detailed instructions.
Open the Notebook and click Run all to execute it.
- Explore how notebooks have cells.
- Our notebook cells are either Markdown or Python.
- Try to add new cells.
- Try to change the type of a cell.
- Try some Markdown in a Markdown cell.
- Try some Python in a Python cell.
- Review the code and see how it works.
- See RESOURCES.md