# 데이터 시각화# 1. matplotlib# 2. pandas# 3. seaborn# 필요한 라이브러리 설치!pip install matplotlib pandas seanborn# python plt.ploy(x,y)# matplotlib 과 numpy 라이브러리 임포트import matplotlib.pyplot as pltimport numpy as np# x축 데이터 생성( 0부터 10까지 100개의 균등한 간격의 점 생성)x = np.linspace(0,10,100)# y축 데이터 생성(sin함수 적용)y=np.sin(x)# 그래프 그리기plt.plot(x,y)# 그래프 상단에 타이틀 정보 입력plt.title("Title")# 그래프 출력plt.show()# 막대 그래프# 데이터 프레임을 생성하..