Skip to article frontmatterSkip to article content

Project Pythia Notebook Template

Scikit-learn

Project Pythia Notebook Template

Next, title your notebook appropriately with a top-level Markdown header, #. Do not use this level header anywhere else in the notebook. Our book build process will use this title in the navbar, table of contents, etc. Keep it short, keep it descriptive. Follow this with a --- cell to visually distinguish the transition to the prerequisites section.


Overview

If you have an introductory paragraph, lead with it here! Keep it short and tied to your material, then be sure to continue into the required list of topics below,

  1. This is a numbered list of the specific topics
  2. These should map approximately to your main sections of content
  3. Or each second-level, ##, header in your notebook
  4. Keep the size and scope of your notebook in check
  5. And be sure to let the reader know up front the important concepts they’ll be leaving with

Prerequisites

This section was inspired by this template of the wonderful The Turing Way Jupyter Book.

Following your overview, tell your reader what concepts, packages, or other background information they’ll need before learning your material. Tie this explicitly with links to other pages here in Foundations or to relevant external resources. Remove this body text, then populate the Markdown table, denoted in this cell with | vertical brackets, below, and fill out the information following. In this table, lay out prerequisite concepts by explicitly linking to other Foundations material or external resources, or describe generally helpful concepts.

Label the importance of each concept explicitly as helpful/necessary.

ConceptsImportanceNotes
Intro to CartopyNecessary
Understanding of NetCDFHelpfulFamiliarity with metadata structure
Project managementHelpful
  • Time to learn: estimate in minutes. For a rough idea, use 5 mins per subsection, 10 if longer; add these up for a total. Safer to round up and overestimate.
  • System requirements:
    • Populate with any system, version, or non-Python software requirements if necessary
    • Otherwise use the concepts table above and the Imports section below to describe required packages as necessary
    • If no extra requirements, remove the System requirements point altogether

Imports

Begin your body of content with another --- divider before continuing into this section, then remove this body text and populate the following code cell with all necessary Python imports up-front:

# import sys
# import glob
# import pandas as pd
# import numpy as np

# from argopy import DataFetcher  # This is the class to work with Argo data
# from argopy import ArgoIndex  #  This is the class to work with Argo index
# from argopy import ArgoNVSReferenceTables  # This is the class to retrieve data from Argo reference tables
# from argopy import ArgoColors  # This is a class with usefull pre-defined colors
# from argopy.plot import scatter_map, scatter_plot  # This is a function to easily make maps 

# # Make a fresh start
# import argopy
# argopy.reset_options()
# argopy.clear_cache()
# argopy.set_options(cachedir='cache_bgc')

# #
# import matplotlib as mpl
# from matplotlib import pyplot as plt
# import cmocean
# import xarray as xr
# xr.set_options(display_expand_attrs = False)

Your first content section

This is where you begin your first section of material, loosely tied to your objectives stated up front. Tie together your notebook as a narrative, with interspersed Markdown text, images, and more as necessary,

# import logging
# logging.getLogger("matplotlib").setLevel(logging.ERROR)
# logging.getLogger("pyproj").setLevel(logging.ERROR)
# logging.getLogger("fsspec").setLevel(logging.ERROR)
# logging.getLogger("parso").setLevel(logging.ERROR)
# logging.getLogger("asyncio").setLevel(logging.ERROR)
# DEBUGFORMATTER = '%(asctime)s [%(levelname)s] [%(name)s] %(filename)s:%(lineno)d: %(message)s'
# logging.basicConfig(
#     level=logging.DEBUG,
#     format=DEBUGFORMATTER,
#     datefmt='%I:%M:%S %p',
#     handlers=[logging.FileHandler("nb-docs.log", mode='w')]
# )

Load a dataset using argopy

# # Format: [lon_min, lon_max, lat_min, lat_max, pres_min, pres_max, datim_min, datim_max]
# BOX = [-56, -45, 54, 60, 0, 2000, '2022-01', '2023-01']
# # BOX = [-56, -45, 54, 60, 0, 2000, '2022-09', '2023-01']
# BOX = [-56, -45, 54, 60, 0, 500, '2019-01', '2023-01']
# # BOX = [-75, -62, 38, 42, 0, 2000, '2021-01', '2022-01']
# # Select profile in a space/time domain:
# index_BOX = [BOX[ii] for ii in [0, 1, 2, 3, 6, 7]]  # We don't want the pressure axis BOX limits
# idx.search_lat_lon_tim(index_BOX)
# # Get the list of all parameters for this region:
# idx.read_params()
# # How many different floats in the region:
# len(idx.read_wmo())
# %%time
# f = DataFetcher(ds='bgc', mode='expert', params='all',
#                 parallel=True, progress=True, cache=False,
#                 chunks_maxsize={'time': 30},
#                )
# f = f.region(BOX).load()
# f

A content subsection

Divide and conquer your objectives with Markdown subsections, which will populate the helpful navbar in Jupyter Lab and here on the Jupyter Book!

# some subsection code
new = "helpful information"

Another content subsection

Keep up the good work! A note, try to avoid using code comments as narrative, and instead let them only exist as brief clarifications where necessary.

Your second content section

Here we can move on to our second objective, and we can demonstrate

Subsection to the second section

a quick demonstration

of further and further
header levels

as well m=at/hm = a * t / h text! Similarly, you have access to other LaTeX\LaTeX equation functionality via MathJax (demo below from link),

x˙=σ(yx)y˙=ρxyxzz˙=βz+xy\begin{align} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{align}

Check out any number of helpful Markdown resources for further customizing your notebooks and the Jupyter docs for Jupyter-specific formatting information. Don’t hesitate to ask questions if you have problems getting it to look just right.

Last Section

If you’re comfortable, and as we briefly used for our embedded logo up top, you can embed raw html into Jupyter Markdown cells (edit to see):

Info

Your relevant information here!

Feel free to copy this around and edit or play around with yourself. Some other admonitions you can put in:

Success

We got this done after all!

Warning

Be careful!

Danger

Scary stuff be here.

We also suggest checking out Jupyter Book’s brief demonstration on adding cell tags to your cells in Jupyter Notebook, Lab, or manually. Using these cell tags can allow you to customize how your code content is displayed and even demonstrate errors without altogether crashing our loyal army of machines!


Summary

Add one final --- marking the end of your body of content, and then conclude with a brief single paragraph summarizing at a high level the key pieces that were learned and how they tied to your objectives. Look to reiterate what the most important takeaways were.

What’s next?

Let Jupyter book tie this to the next (sequential) piece of content that people could move on to down below and in the sidebar. However, if this page uniquely enables your reader to tackle other nonsequential concepts throughout this book, or even external content, link to it here!

Resources and references

Finally, be rigorous in your citations and references as necessary. Give credit where credit is due. Also, feel free to link to relevant external material, further reading, documentation, etc. Then you’re done! Give yourself a quick review, a high five, and send us a pull request. A few final notes:

  • Kernel > Restart Kernel and Run All Cells... to confirm that your notebook will cleanly run from start to finish
  • Kernel > Restart Kernel and Clear All Outputs... before committing your notebook, our machines will do the heavy lifting
  • Take credit! Provide author contact information if you’d like; if so, consider adding information here at the bottom of your notebook
  • Give credit! Attribute appropriate authorship for referenced code, information, images, etc.
  • Only include what you’re legally allowed: no copyright infringement or plagiarism

Thank you for your contribution!