df = pd.DataFrame({'Major':['Math','Physics','Math','Math','Physics','Math','Math','Physics','Demograghy'],'Grade':['3','2','2','1','1','3','3','2','2'],'Age':[20,18,19,21,20,19,19,18,20]})
请问groupby函数的相关参数应如何设置,才能输出
Grade 1 2 3
Major
Demography
Math
Pyhsics
(表中的值为均值)
你好,df.groupby(["Major"]).mean("Grade") 这样是否可以
可以了,谢谢。