Simple Visualisation

ML
Author

Bret Bosma

Published

January 6, 2026

import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
%config InlineBackend.figure_format = 'retina'
x = np.linspace(0, 10, 100)
y = np.sin(x)

plt.plot(x, y)