要使用Python制作數據圖表,您可以使用以下幾種常用的Python庫:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [10, 15, 7, 12, 9]
plt.bar(x, y)
plt.xlabel('x軸標簽')
plt.ylabel('y軸標簽')
plt.title('柱狀圖')
plt.show()
import seaborn as sns
x = [1, 2, 3, 4, 5]
y = [10, 15, 7, 12, 9]
sns.scatterplot(x, y)
plt.xlabel('x軸標簽')
plt.ylabel('y軸標簽')
plt.title('散點圖')
plt.show()
import pandas as pd
data = {'x': [1, 2, 3, 4, 5], 'y': [10, 15, 7, 12, 9]}
df = pd.DataFrame(data)
df.plot(x='x', y='y', kind='line')
plt.xlabel('x軸標簽')
plt.ylabel('y軸標簽')
plt.title('折線圖')
plt.show()
除了上述庫之外,還有其他一些庫也可以用于數據可視化,如Plotly、Bokeh等。根據您的需求和偏好,選擇適合的庫來制作數據圖表。