0
1

More than 1 year has passed since last update.

list=[1,2,3,4,5,6]という6つの値からなるデータの中央値の表示方法

Posted at

[code]
import pandas as pd
list=pd.Series([1,2,3,4,5,6])
print('最小値',list.min())
print('中央値',list.median())


最小値 1
中央値 3.5

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1