728x90
반응형
pivot_table
-
[Python] Pandas ReshapePython/pandas 2022. 10. 14. 10:41
목차 Reshaping Stack tuples = list( zip( ["bar", "bar", "baz", "baz", "foo", "foo", "qux", "qux"], ["one", "two", "one", "two", "one", "two", "one", "two"], ) ) index = pd.MultiIndex.from_tuples(tuples, names = ["first", "second"]) df = pd.DataFrame(np.random.randn(8, 2), index = index, columns = ["A", "B"]) df2 = df[:4] df2 stack() 메소드는 데이터 프레임의 열에서 레벨을 '압축'한다. stacked = df2.stack() stacked "스택된"..