import pandas as pd
"""メインの処理"""
df = pd.DataFrame([['佐藤', 170, 60], ['田中', 160, 50], ['鈴木', 165, 58]],
columns=['Name', 'Height', 'Weight', ])
columns:列名一覧をcolumns=列名と指定します。
# データフレームを作成し、表示
データを取り出す
# 前回のプログラムの読込
%run 1.ipynb
df
# 身長列のデータを取り出します
heights = df['Height']
heights
0 170 1 160 2 165 Name: Height, dtype: int64
平均値、最大値を求める
前の続き
# 身長の最大値を求めましょう
max_heights = heights.max()
max_heights
170
# 身長の平均値を求めましょう
mean_heights = heights.mean()
mean_heights
165.0
他にも、最小値を取得する min()
、合計値を算出する sum()
コメント