Include Notebook Section

Use to include a jupyter notebook or one of its parts. Here is an example of a notebook: To include one of its sections use, Markdown cells will be seamlessly integrated with the current page. Top level headers become this page top level header. Note: without , the entire notebook content will be added. include-jupyter :include-jupyter: jupyter/notebook.ipynb { includeSection: ["Loading Data From CSV"] } includeSection

Loading Data From CSV

Use to load data from an external file. Note: Remember that you can define lookup paths for files like notebooks inside lookup-paths file, so you don't have to copy and paste notebooks to your documentation directory. read_csv from pandas import read_csv from IPython.display import display games = read_csv('games.csv') print(games) genre title price 0 RPG Witcher 3 20.0 1 FPS Doom 39.0 2 Strategy War Craft 10.0 3 Cards Balatro 5.0 display(games)

Exclude Section Title

Use to exclude section title. It can be useful when you want to use section titles as example separators to be included into your guides. To calculate the average prcing, use and combination. excludeSectionTitle :include-jupyter: jupyter/notebook.ipynb { includeSection: ["Average Prcing By Genre"], excludeSectionTitle: true } groupby mean games.groupby('genre')['price'].mean().plot(kind='bar', title='Average Price by Genre', ylabel='Price ($)', rot=45) <Axes: title={'center': 'Average Price by Genre'}, xlabel='genre', ylabel='Price ($)'>

Two Sides

You will learn about the Two Sides Layout in the Layout section. If you are are curious now for examples, jump to Jupyter Two Sides example