[code]
import pandas as pd
list=pd.Series([1,2,3,4,5,6])
print('最小値',list.min())
print('中央値',list.median())
最小値 1
中央値 3.5
Go to list of users who liked
More than 1 year has passed since last update.
[code]
import pandas as pd
list=pd.Series([1,2,3,4,5,6])
print('最小値',list.min())
print('中央値',list.median())
最小値 1
中央値 3.5
Register as a new user and use Qiita more conveniently
Go to list of users who liked