Code
import matplotlib.pyplot as plt
import numpy as np
= np.linspace(0, 10, 100)
x
= plt.figure()
fig '-')
plt.plot(x, np.sin(x), '--') plt.plot(x, np.cos(x),
Ravi Kalia
February 9, 2024
Let’s see if blogging with code and plots works here:
kindly taken from Jake Vanderplas’s blog
Success!