Plot general example
In [1]:
Copied!
"""
Thumbnail name
===================================
This text shows when hovering over the thumbnail.
"""
"""
Thumbnail name
===================================
This text shows when hovering over the thumbnail.
"""
Out[1]:
'\nThumbnail name\n===================================\n\nThis text shows when hovering over the thumbnail.\n'
In [2]:
Copied!
import numpy as np
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.pyplot as plt
In [3]:
Copied!
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
In [5]:
Copied!
print('This example shows a sin plot!')
print('This example shows a sin plot!')
This example shows a sin plot!