From 2be61fbc39113333cb5863f92eb586087995cec3 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 27 Aug 2024 00:10:55 +0000 Subject: [PATCH] site deploy Auto-generated via {sandpaper} Source : 031c8c05b5185385fa6eece93a52f83c6c5b924d Branch : md-outputs Author : GitHub Actions Time : 2024-06-13 05:32:40 +0000 Message : markdown source builds Auto-generated via {sandpaper} Source : 483756440b2f95422cc77d14dfd6d46dc5f07b1b Branch : main Author : Olav Vahtras Time : 2024-06-13 05:31:50 +0000 Message : Merge pull request #681 from danny-lloyd/improve-formatting-ep16 Improve formatting of episode 16 solution --- 01-run-quit.html | 67 +-- 02-variables.html | 73 +-- 03-types-conversion.html | 72 +-- 04-built-in.html | 69 +-- 05-coffee.html | 13 +- 06-libraries.html | 71 +-- 07-reading-tabular.html | 46 +- 08-data-frames.html | 67 +-- 09-plotting.html | 57 +- 10-lunch.html | 10 +- 11-lists.html | 83 ++- 12-for-loops.html | 81 ++- 13-conditionals.html | 54 +- 14-looping-data-sets.html | 40 +- 15-coffee.html | 13 +- 16-writing-functions.html | 76 ++- 17-scope.html | 22 +- 18-style.html | 41 +- 19-wrap.html | 16 +- 20-feedback.html | 13 +- 404.html | 15 +- CODE_OF_CONDUCT.html | 10 +- LICENSE.html | 19 +- aio.html | 764 ++++++++++----------------- assets/styles.css | 2 +- assets/styles.css.map | 2 +- design.html | 25 +- discuss.html | 10 +- exercises.html | 10 +- images.html | 12 +- index.html | 21 +- instructor-notes.html | 13 +- instructor/01-run-quit.html | 67 +-- instructor/02-variables.html | 73 +-- instructor/03-types-conversion.html | 72 +-- instructor/04-built-in.html | 69 +-- instructor/05-coffee.html | 13 +- instructor/06-libraries.html | 71 +-- instructor/07-reading-tabular.html | 46 +- instructor/08-data-frames.html | 67 +-- instructor/09-plotting.html | 57 +- instructor/10-lunch.html | 10 +- instructor/11-lists.html | 83 ++- instructor/12-for-loops.html | 81 ++- instructor/13-conditionals.html | 54 +- instructor/14-looping-data-sets.html | 40 +- instructor/15-coffee.html | 13 +- instructor/16-writing-functions.html | 76 ++- instructor/17-scope.html | 22 +- instructor/18-style.html | 41 +- instructor/19-wrap.html | 16 +- instructor/20-feedback.html | 13 +- instructor/404.html | 15 +- instructor/CODE_OF_CONDUCT.html | 10 +- instructor/LICENSE.html | 19 +- instructor/aio.html | 764 ++++++++++----------------- instructor/design.html | 25 +- instructor/discuss.html | 10 +- instructor/exercises.html | 10 +- instructor/images.html | 12 +- instructor/index.html | 21 +- instructor/instructor-notes.html | 13 +- instructor/key-points.html | 12 +- instructor/profiles.html | 12 +- instructor/reference.html | 80 +-- key-points.html | 12 +- pkgdown.yml | 2 +- profiles.html | 12 +- reference.html | 80 +-- 69 files changed, 1509 insertions(+), 2471 deletions(-) diff --git a/01-run-quit.html b/01-run-quit.html index 4d27f1e31..52d21412c 100644 --- a/01-run-quit.html +++ b/01-run-quit.html @@ -394,10 +394,10 @@

-
+

-

@@ -417,7 +417,7 @@

-
See all in one page +
See all in one page
@@ -511,8 +511,7 @@

Objectives

to tell a complete story of the analysis.

Each notebook contains one or more cells that contain code, text, or images.

-

Getting Started with JupyterLab -

+

Getting Started with JupyterLab


JupyterLab is an application server with a web user interface from Project Jupyter that enables one to work with documents and activities such as Jupyter notebooks, text editors, terminals, and even custom components in a flexible, integrated, and @@ -538,8 +537,7 @@

Objectives

-

JupyterLab? What about Jupyter notebooks? -

+

JupyterLab? What about Jupyter notebooks?

JupyterLab is the next stage in the evolution of the Jupyter Notebook. If you have prior @@ -552,8 +550,7 @@

JupyterLab? What about Jupyter notebooks?Starting JupyterLab -

+

Starting JupyterLab


You can start the JupyterLab server through the command line or through an application called Anaconda Navigator. Anaconda Navigator is included as part of the Anaconda Python distribution.

@@ -612,8 +609,7 @@

Anaconda Navigator JupyterLab landing page

-

The JupyterLab Interface -

+

The JupyterLab Interface


JupyterLab has many features found in traditional integrated development environments (IDEs) but is focused on providing flexible building blocks for interactive, exploratory computing.

@@ -660,8 +656,7 @@
-

Kernels -

+

Kernels

The JupyterLab docs define kernels as “separate processes started by the server that runs @@ -708,8 +703,7 @@

Main Work Area

-

Creating a Python script -

+

Creating a Python script


  • To start writing a new Python program click the Text File icon under the Other header in the Launcher tab of the Main Work Area.
  • -

Creating a Jupyter Notebook -

+

Creating a Jupyter Notebook


To open a new notebook click the Python 3 icon under the Notebook header in the Launcher tab in the main work area. You can also create a new notebook by selecting New -> Notebook @@ -744,8 +737,7 @@

Main Work Area

-

How It’s Stored -

+

How It’s Stored

  • The notebook file is stored in a format called JSON.
  • Just like a webpage, what’s saved looks different from what you see @@ -760,8 +752,7 @@

    How It’s Stored

-

Arranging Documents into Panels of Tabs -

+

Arranging Documents into Panels of Tabs

In the JupyterLab Main Work Area you can arrange documents into panels of tabs. Here is an example from the official @@ -797,8 +788,7 @@

Show me the solution

-

Code vs. Text -

+

Code vs. Text

Jupyter mixes code and text in different types of blocks, called cells. We often use the term “code” to mean “the source code of software @@ -808,8 +798,7 @@

Code vs. Text

-

The Notebook has Command and Edit modes. -

+

The Notebook has Command and Edit modes.


  • If you press Esc and Return alternately, the outer border of your code cell will change from gray to blue.
  • These are the Command (gray) and @@ -831,8 +820,7 @@

    Code vs. Text

-

Command Vs. Edit -

+

Command Vs. Edit

In the Jupyter notebook page are you currently in Command or Edit mode?
@@ -987,8 +975,7 @@

A Level-2 Heading (etc.)

-

Creating Lists in Markdown -

+

Creating Lists in Markdown

Create a nested list in a Markdown cell in a notebook that looks like this:

@@ -1028,8 +1015,7 @@

Show me the solution

-

More Math -

+

More Math

What is displayed when a Python cell in a notebook that contains several calculations is executed? For example, what happens when this @@ -1065,8 +1051,7 @@

PYTHON