using Plots
plot(sin,
-> sin(2x),
x 0,
2π,
=false,
leg=(0, :lavender)) fill
This post contains executed code.
using PyCall
"""import antigravity
pyprint("YOU'RE FLYING! HOW?")
"""
YOU'RE FLYING! HOW?
using PyCall
"""
pyimport numpy as np
import matplotlib.pyplot as plt
r = np.arange(0, 2, 0.01)
theta = 2 * np.pi * r
fig, ax = plt.subplots(subplot_kw={"projection": "polar"})
ax.plot(theta, r)
ax.set_rticks([0.5, 1, 1.5, 2])
ax.grid(True)
"""