groupby 개체를 인쇄하는 방법 Pandas로 그룹화 한 결과를 인쇄하고 싶습니다. 데이터 프레임이 있습니다. import pandas as pd df = pd.DataFrame({'A': ['one', 'one', 'two', 'three', 'three', 'one'], 'B': range(6)}) print(df) A B 0 one 0 1 one 1 2 two 2 3 three 3 4 three 4 5 one 5 'A'로 그룹화 한 후 인쇄 할 때 다음이 있습니다. print(df.groupby('A')) 그룹화 된 데이터 프레임을 어떻게 인쇄 할 수 있습니까? 만약 내가한다면: print(df.groupby('A').head()) 그룹화되지 않은 것처럼 데이터 프레임을 얻습니다. A B A o..