打印 Pandas 数列的平均值
Pandas 库中的 mean() 函数可用于查找数列的平均值。
算法
Step 1: Define a Pandas series. Step 2: Use the mean() function to calculate the mean. Step 3: Print the mean.
示例代码
import pandas as pd
series = pd.Series([10,20,30,40,50])
print("Pandas Series: \n", series)
series_mean = series.mean()
print("Mean of the Pandas series:\n", series_mean)输出
Pandas Series: 0 10 1 20 2 30 3 40 4 50 dtype: int64 Mean of the Pandas series: 30.0
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP