삼성전자 주식데이터를 불러와서, 시세를 그래프로 그려봅니다. import pandas as pd import numpy as np import matplotlib.pyplot as plt import seaborn as sns import FinanceDataReader as fdr #2021년도 부터의 삼성전자 주식데이터 불러오기 df = fdr.DataReader('005930', '2021') print(df.head()) print(df.tail()) #주식가격을 시각화하기 plt.figure(figsize=(10,6)) sns.lineplot(x=df.index, y=df['Close']) plt.title('SAMSUNG ELEC price in 2023') plt.xlabel('date') ..