02-05-2021



Prerequisite: Getting started with Jupyter Notebook. Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. What makes data analysis in Python more efficient and productive is Jupyter notebook or formerly known as the IPython notebook. Practice Your Markdown Skills. Open or create a new Jupyter Notebook file. Add a new Markdown cell and include: A title for the notebook (e.g. Intro to Earth Analytics - Chapter Four) A bullet list with: A bold word for Author: and then add text for your name. A bold word for Date: and then add text for today’s date. Add another Markdown cell.

Markdown is a simple text-to-HTML markup language written in plain text. Jupyter notebook recognizes markdown and renders markdown code as HTML. In this section, we present the basic features of markdown.

See Markdown (by John Gruber) and GitHub Markdown Help for more information.

Text

List Markdown Jupiter Fl

OutputSyntax
emphasis*emphasis*
strong**strong**
code`code`

Numbered List Markdown Jupyter

Headings

Markdown
OutputSyntax
# Heading 1

Heading 2

## Heading 2

Heading 3

### Heading 3

Heading 4

#### Heading 4
Heading 5
##### Heading 5
Heading 6
###### Heading 6

Lists

Create an ordered list using numbers:

  1. Number theory
  2. Algebra
  3. Partial differential equations
  4. Probability

Create an unordered list using an asterisk * for each item:

  • Number theory
  • Algebra
  • Partial differential equations
  • Probability
Markdown

Use indentation to create nested lists:

List Markdown Jupiter County

  1. Mathematics
    • Calculus
    • Linear Algebra
    • Probability
  2. Physics
    • Classical Mechanics
    • Relativity
    • Thermodynamics
  3. Biology
    • Diffusion and Osmosis
    • Homeostasis
    • Immunology

Links

Create a link with the syntax [description](url). For example:

creates the link UBC Math.

Images

Include an image using the syntax ![description](url). For example:

displays the image

Jupyter Notebook List Markdown

Tables

Numbered list markdown jupyter

Create a table by separating entries by pipe characters |:

Python OperatorDescription
+addition
-subtraction
*multiplication
/division
**power

The syntax :---: specifies the alignment (centered in this case) of the columns. See more about GitHub flavoured markdown.

Exercises

List Markdown Jupiter Florida

  1. Create a numbered list of the top 5 websites you visit most often and include a link for each site.
  2. Write a short biography of your favourite mathematician, provide a link to their Wikipedia page and include an image (with a link and description of the source).
  3. Create a table of all the courses that you have taken in university. Include the columns: course number, course title, year (that you took the class), and instructor name.