9
Series에서 DataFrame으로 Pandas GroupBy 출력 변환
이 같은 입력 데이터로 시작합니다 df1 = pandas.DataFrame( { "Name" : ["Alice", "Bob", "Mallory", "Mallory", "Bob" , "Mallory"] , "City" : ["Seattle", "Seattle", "Portland", "Seattle", "Seattle", "Portland"] } ) 인쇄시 다음과 같이 나타납니다. City Name 0 Seattle Alice 1 Seattle Bob 2 Portland Mallory 3 Seattle Mallory 4 Seattle Bob …