{ "cells": [ { "cell_type": "markdown", "id": "5c291475-8c7c-461c-9b12-545a887b2432", "metadata": {}, "source": [ "# Jupyter Lab\n", "\n", "## A Quick Start Guide\n", "\n", "Welcome to the wonderful world of Jupyter lab! \n", "This is a Data Science playground where you can easily write code and investigate the results. It's an ideal environment for: \n", "- Research & Development\n", "- Prototyping\n", "- Learning (that's us!)\n", "\n", "It's not typically used for shipping production code, and in Week 8 we'll explore the bridge between Jupyter and python code.\n", "\n", "A file in Jupyter Lab, like this one, is called a **Notebook**.\n", "\n", "A long time ago, Jupyter used to be called \"IPython\", and so the extensions of notebooks are \".ipynb\" which stands for \"IPython Notebook\".\n", "\n", "On the left is a File Browser that lets you navigate around the directories and choose different notebooks. But you probably know that already, or you wouldn't have got here!\n", "\n", "The notebook consists of a series of square boxes called \"cells\". Some of them contain text, like this cell, and some of them contain code, like the cell below.\n", "\n", "Click in a cell with code and press `Shift + Return` (or `Shift + Enter`) to run the code and print the output.\n", "\n", "Do that now for the cell below this:" ] }, { "cell_type": "code", "execution_count": 1, "id": "33d37cd8-55c9-4e03-868c-34aa9cab2c80", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "4" ] }, "execution_count": 1, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Click anywhere in this cell and press Shift + Return\n", "\n", "2 + 2" ] }, { "cell_type": "markdown", "id": "9e95df7b-55c6-4204-b8f9-cae83360fc23", "metadata": {}, "source": [ "## Congrats!\n", "\n", "Now run the next cell which sets a value, followed by the cells after it to print the value" ] }, { "cell_type": "code", "execution_count": 2, "id": "585eb9c1-85ee-4c27-8dc2-b4d8d022eda0", "metadata": {}, "outputs": [], "source": [ "# Set a value for a variable\n", "\n", "favorite_fruit = \"bananas\"" ] }, { "cell_type": "code", "execution_count": 3, "id": "07792faa-761d-46cb-b9b7-2bbf70bb1628", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'bananas'" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# The result of the last statement is shown after you run it\n", "\n", "favorite_fruit" ] }, { "cell_type": "code", "execution_count": 4, "id": "a067d2b1-53d5-4aeb-8a3c-574d39ff654a", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "My favorite fruit is bananas\n" ] } ], "source": [ "# Use the variable\n", "\n", "print(f\"My favorite fruit is {favorite_fruit}\")" ] }, { "cell_type": "code", "execution_count": 6, "id": "4c5a4e60-b7f4-4953-9e80-6d84ba4664ad", "metadata": {}, "outputs": [], "source": [ "# Now change the variable\n", "\n", "favorite_fruit = f\"anything but {favorite_fruit}\"" ] }, { "cell_type": "markdown", "id": "9442d5c9-f57d-4839-b0af-dce58646c04f", "metadata": {}, "source": [ "## Now go back and rerun the cell with the print statement, two cells back\n", "\n", "See how it prints something different, even though favorite_fruit was changed further down in the notebook? \n", "\n", "The order that code appears in the notebook doesn't matter. What matters is the order that the code is **executed**. There's a python process sitting behind this notebook in which the variables are being changed.\n", "\n", "This catches some people out when they first use Jupyter." ] }, { "cell_type": "code", "execution_count": 8, "id": "8e5ec81d-7c5b-4025-bd2e-468d67b581b6", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "My favorite fruit is apples\n" ] } ], "source": [ "# Then run this cell twice, and see if you understand what's going on\n", "\n", "print(f\"My favorite fruit is {favorite_fruit}\")\n", "\n", "favorite_fruit = \"apples\"" ] }, { "cell_type": "markdown", "id": "a29dab2d-bab9-4a54-8504-05e62594cc6f", "metadata": {}, "source": [ "# Explaining the 'kernel'\n", "\n", "Sitting behind this notebook is a Python process which executes each cell when you run it. That Python process is known as the Kernel. Each notebook has its own separate Kernel.\n", "\n", "You can go to the Kernel menu and select \"Restart Kernel\".\n", "\n", "If you then try to run the next cell, you'll get an error, because favorite_fruit is no longer defined. You'll need to run the cells from the top of the notebook again. Then the next cell should run fine." ] }, { "cell_type": "code", "execution_count": 9, "id": "84b1e410-5eda-4e2c-97ce-4eebcff816c5", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "My favorite fruit is apples\n" ] } ], "source": [ "print(f\"My favorite fruit is {favorite_fruit}\")" ] }, { "cell_type": "markdown", "id": "4d4188fc-d9cc-42be-8b4e-ae8630456764", "metadata": {}, "source": [ "# Adding and moving cells\n", "\n", "Click in this cell, then click the \\[+\\] button in the toolbar above to create a new cell immediately below this one. Copy and paste in the code in the prior cell, then run it! There are also icons in the top right of the selected cell to delete it (bin), duplicate it, and move it up and down.\n" ] }, { "cell_type": "code", "execution_count": null, "id": "ce258424-40c3-49a7-9462-e6fa25014b03", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "30e71f50-8f01-470a-9d7a-b82a6cef4236", "metadata": {}, "source": [ "# Cell output\n", "\n", "When you execute a cell, the standard output and the result of the last statement is written to the area immediately under the code, known as the 'cell output'. When you save a Notebook from the file menu (or command+S), the output is also saved, making it a useful record of what happened.\n", "\n", "You can clean this up by going to Edit menu >> Clear Outputs of All Cells, or Kernel menu >> Restart Kernel and Clear Outputs of All Cells." ] }, { "cell_type": "code", "execution_count": null, "id": "a4d021e2-c284-411f-8ab1-030530cfbe72", "metadata": {}, "outputs": [], "source": [ "spams = [\"spam\"] * 1000\n", "print(spams)\n", "\n", "# Might be worth clearing output after running this!" ] }, { "cell_type": "markdown", "id": "eac060f2-7a71-46e7-8235-b6ad0a76f5f8", "metadata": {}, "source": [ "# Using markdown\n", "\n", "So what's going on with these areas with writing in them, like this one? Well, there's actually a different kind of cell called a 'Markdown' cell for adding explanations like this. Click the + button to add a cell. Then in the toolbar, click where it says 'Code' and change it to 'Markdown'.\n", "\n", "Add some comments using Markdown format, perhaps copying and pasting from here:\n", "\n", "```\n", "# This is a heading\n", "## This is a sub-head\n", "### And a sub-sub-head\n", "\n", "I like Jupyter Lab because it's\n", "- Easy\n", "- Flexible\n", "- Satisfying\n", "```\n", "\n", "And to turn this into formatted text simply with Shift+Return in the cell.\n", "Click in the cell and press the Bin icon if you want to remove it." ] }, { "cell_type": "code", "execution_count": null, "id": "e1586320-c90f-4f22-8b39-df6865484950", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "1330c83c-67ac-4ca0-ac92-a71699e0c31b", "metadata": {}, "source": [ "# The exclamation point\n", "\n", "There's a super useful feature of jupyter labs; you can type a command with a ! in front of it in a code cell, like:\n", "\n", "!pip install \\[some_package\\]\n", "\n", "And it will run it at the command line (as if in Windows Powershell or Mac Terminal) and print the result" ] }, { "cell_type": "code", "execution_count": 10, "id": "82042fc5-a907-4381-a4b8-eb9386df19cd", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Guide to Jupyter.ipynb day2 EXERCISE.ipynb troubleshooting.ipynb\n", "Intermediate Python.ipynb day5.ipynb week1 EXERCISE.ipynb\n", "\u001b[34mcommunity-contributions\u001b[m\u001b[m diagnostics.py\n", "day1.ipynb \u001b[34msolutions\u001b[m\u001b[m\n" ] } ], "source": [ "# list the current directory\n", "\n", "!ls" ] }, { "cell_type": "code", "execution_count": 11, "id": "4fc3e3da-8a55-40cc-9706-48bf12a0e20e", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "PING cnn.com (151.101.195.5): 56 data bytes\n", "64 bytes from 151.101.195.5: icmp_seq=0 ttl=58 time=9.569 ms\n", "64 bytes from 151.101.195.5: icmp_seq=1 ttl=58 time=15.249 ms\n", "64 bytes from 151.101.195.5: icmp_seq=2 ttl=58 time=17.790 ms\n", "64 bytes from 151.101.195.5: icmp_seq=3 ttl=58 time=14.748 ms\n", "64 bytes from 151.101.195.5: icmp_seq=4 ttl=58 time=17.198 ms\n", "64 bytes from 151.101.195.5: icmp_seq=5 ttl=58 time=16.242 ms\n", "64 bytes from 151.101.195.5: icmp_seq=6 ttl=58 time=14.943 ms\n", "64 bytes from 151.101.195.5: icmp_seq=7 ttl=58 time=16.258 ms\n", "64 bytes from 151.101.195.5: icmp_seq=8 ttl=58 time=13.901 ms\n", "64 bytes from 151.101.195.5: icmp_seq=9 ttl=58 time=12.729 ms\n", "64 bytes from 151.101.195.5: icmp_seq=10 ttl=58 time=17.548 ms\n", "64 bytes from 151.101.195.5: icmp_seq=11 ttl=58 time=32.210 ms\n", "64 bytes from 151.101.195.5: icmp_seq=12 ttl=58 time=14.898 ms\n", "64 bytes from 151.101.195.5: icmp_seq=13 ttl=58 time=12.431 ms\n", "64 bytes from 151.101.195.5: icmp_seq=14 ttl=58 time=16.906 ms\n", "64 bytes from 151.101.195.5: icmp_seq=15 ttl=58 time=15.539 ms\n", "64 bytes from 151.101.195.5: icmp_seq=16 ttl=58 time=15.169 ms\n", "^C\n", "\n", "--- cnn.com ping statistics ---\n", "17 packets transmitted, 17 packets received, 0.0% packet loss\n", "round-trip min/avg/max/stddev = 9.569/16.078/32.210/4.506 ms\n" ] } ], "source": [ "# ping cnn.com - press the stop button in the toolbar when you're bored\n", "\n", "!ping cnn.com" ] }, { "cell_type": "code", "execution_count": null, "id": "a58e9462-89a2-4b4f-b4aa-51c4bd9f796b", "metadata": {}, "outputs": [], "source": [ "# This is a useful command that ensures your Anaconda environment \n", "# is up to date with any new upgrades to packages;\n", "# But it might take a minute and will print a lot to output\n", "\n", "!conda env update -f ../environment.yml --prune" ] }, { "cell_type": "markdown", "id": "4688baaf-a72c-41b5-90b6-474cb24790a7", "metadata": {}, "source": [ "# Minor things we encounter on the course\n", "\n", "This isn't necessarily a feature of Jupyter, but it's a nice package to know about that is useful in Jupyter Labs, and I use it in the course.\n", "\n", "The package `tqdm` will print a nice progress bar if you wrap any iterable." ] }, { "cell_type": "code", "execution_count": 12, "id": "2646a4e5-3c23-4aee-a34d-d623815187d2", "metadata": {}, "outputs": [], "source": [ "# Here's some code with no progress bar\n", "# It will take 10 seconds while you wonder what's happpening..\n", "\n", "import time\n", "\n", "spams = [\"spam\"] * 1000\n", "\n", "for spam in spams:\n", " time.sleep(0.01)" ] }, { "cell_type": "code", "execution_count": 13, "id": "6e96be3d-fa82-42a3-a8aa-b81dd20563a5", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "\n", "00%|███████████████████████████████████████| 1000/1000 [00:12<00:00, 81.81it/s]" ] } ], "source": [ "# And now, with a nice little progress bar:\n", "\n", "import time\n", "from tqdm import tqdm\n", "\n", "spams = [\"spam\"] * 1000\n", "\n", "for spam in tqdm(spams):\n", " time.sleep(0.01)" ] }, { "cell_type": "code", "execution_count": 14, "id": "63c788dd-4618-4bb4-a5ce-204411a38ade", "metadata": {}, "outputs": [ { "data": { "text/markdown": [ "# This is a big heading!\n", "\n", "- And this is a bullet-point\n", "- So is this\n", "- Me, too!" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# On a different topic, here's a useful way to print output in markdown\n", "\n", "from IPython.display import Markdown, display\n", "\n", "display(Markdown(\"# This is a big heading!\\n\\n- And this is a bullet-point\\n- So is this\\n- Me, too!\"))\n" ] }, { "cell_type": "markdown", "id": "9d14c1fb-3321-4387-b6ca-9af27676f980", "metadata": {}, "source": [ "# That's it! You're up to speed on Jupyter Lab.\n", "\n", "## Want to be even more advanced?\n", "\n", "If you want to become a pro at Jupyter Lab, you can read their tutorial [here](https://jupyterlab.readthedocs.io/en/latest/). But this isn't required for our course; just a good technique for hitting Shift + Return and enjoying the result!" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.11" } }, "nbformat": 4, "nbformat_minor": 5 }