import 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)
plt.show()
Deep-Diving into the world of Deep Learning
and Trading
안녕하세요!!
fruit | price |
---|---|
apple | 2.05 |
pear | 1.37 |
orange | 3.09 |
\[ a^2 + b^2 = c^2 \]
Copyright © 2023 Minsuk Sung All rights reserved.