import matplotlib.pyplot as plt
import numpy as np
"ggplot")
plt.style.use(
= np.linspace(-np.pi, np.pi, 100)
x = np.sin(x)
y
=r"$\sin(x)$")
plt.plot(x, y, labelr"$x$")
plt.xlabel(r"$\sin(x)$")
plt.ylabel(
plt.legend() plt.show()
Sample Post
news
code
analysis
An example of my first post