파이썬 기본 그래프 그리기(matplotlib, plotly)
파이썬 기본 그래프 그리기(matplotlib, plotly)¶라인 그래프¶ 아래 예제 코드를 실행하면 matplotlib, plotly을 통해 각각 라인 그래프를 확인할 수 있습니다. Matplotlib 사용 예제¶ In [1]: import matplotlib.pyplot as plt # Sample data x = [1, 2, 3, 4, 5] y = [2, 3, 5, 7, 11] # Create a line plot plt.plot(x, y) # Adding title plt.title('Sample Line Plot') # Adding labels plt.xlabel('X Axis Label') plt.ylabel('Y Axis Label') # Show..
2024. 2. 27.