Jupyter-Notebook

How to display full output in Jupyter, not only last result?

1
2
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"

Sample plot

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os.path
import xarray as xr
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd

SMALL_SIZE = 8
MEDIUM_SIZE = 10
BIGGER_SIZE = 24

plt.rcParams["figure.figsize"] = (10,8)
plt.rc('font', size=BIGGER_SIZE) # controls default text sizes
plt.rc('axes', titlesize=BIGGER_SIZE) # fontsize of the axes title
plt.rc('axes', labelsize=BIGGER_SIZE) # fontsize of the x and y labels
plt.rc('xtick', labelsize=BIGGER_SIZE) # fontsize of the tick labels
plt.rc('ytick', labelsize=BIGGER_SIZE) # fontsize of the tick labels
plt.rc('legend', fontsize=BIGGER_SIZE) # legend fontsize
plt.rc('figure', titlesize=BIGGER_SIZE) # fontsize of the figure title

# plt.rcParams['font.sans-serif'] = ['SimHei']
# plt.rcParams['axes.unicode_minus'] = False

plt.rcParams.update({'font.family':'sans-serif'})
plt.rcParams['font.sans-serif'] = ['DejaVu Sans']

#
#
#

plt.title("diff T2m (UCM-on - UCM-off) of selected urban area")
plt.ylabel("T2m (deg C)")
plt.xlabel("Time (HKT)")

# Add a horizontal line across the Axes.
plt.axhline(y = 0.0, color = 'k', linestyle='--', linewidth=2, label = 'axhline')
plt.axvline(x = 1.0, color = 'b', linestyle='--', linewidth=2, label = 'axvline')

plt.xticks(rotation=45)
plt.grid(linestyle='--')

# Put a legend to the right of the current axis
plt.legend(loc='center left', bbox_to_anchor=(1, 0.5))
plt.tight_layout()
plt.show()
plt.close()

To access the remote machine with a browser

To access the remote machine with a browser the notebook must listen on an external facing port (not localhost). You will need the same invocation if want to run the Jupyter notebook on a container. In that case it is something like this:

1
jupyter-notebook --no-browser --port 11013 --ip=0.0.0.0

To listen only in localhost then you can omit the IP

1
jupyter notebook --no-browser --port=8080

Jupyter-Notebook
https://waipangsze.github.io/2023/06/24/Jupyter-Notebook/
Author
wpsze
Posted on
June 24, 2023
Updated on
January 22, 2025
Licensed under