Quarto 테스트

news
Author

성민석

Published

April 11, 2023

Deep-Diving into the world of Deep Learning and Trading

안녕하세요!!

Fruit prices
fruit price
apple 2.05
pear 1.37
orange 3.09
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()

Figure 1: A line plot on a polar axis

\[ a^2 + b^2 = c^2 \]






Copyright © 2023 Minsuk Sung All rights reserved.