Python 是一種高級編程語言,廣泛用于數據科學和機器學習等領域。匯總數據是 Python 的重要應用之一。下面將介紹在 Python 中如何使用一些庫來匯總數據。
1. Numpy
import numpy as np arr = np.array([1, 2, 3, 4, 5]) sum_arr = np.sum(arr) mean_arr = np.mean(arr) print("sum_arr:", sum_arr) print("mean_arr:", mean_arr)
2. Pandas
import pandas as pd data = {'Name': ['Tom', 'Jerry', 'Jack', 'Marry', 'Alice'], 'Age': [20, 30, 25, 18, 22], 'Score': [90, 85, 91, 78, 92]} df = pd.DataFrame(data) sum_df = df.sum() mean_df = df.mean() print("sum_df:\n", sum_df) print("mean_df:\n", mean_df)
3. Matplotlib
import matplotlib.pyplot as plt x = [1, 2, 3, 4, 5] y = [9, 8, 6, 7, 10] plt.plot(x, y) plt.title("Line Plot") plt.xlabel("X-axis") plt.ylabel("Y-axis") plt.show()
總結:
Python 中的 Numpy、Pandas 和 Matplotlib 等庫提供了豐富的函數和方法來幫助我們匯總和可視化數據。通過使用這些庫,我們可以更加高效和便捷地處理數據,從而讓數據的價值最大化。