Pandas DataFrame : 데이터 행,열 바꾸는 방법들
https://www.delftstack.com/ko/howto/python-pandas/how-to-change-the-order-of-dataframe-columns/ Pandas DataFrame 열의 순서를 변경하는 방법이 자습서에서는 insert, re_index 및 new list를 사용하여 DataFrame 열의 순서를 변경하는 방법을 보여줍니다.www.delftstack.com df = df.reindex(columns=['a','f','d','b','c','e'])1번 방식 가장 간단df = df[['가','라','나','다']] 2번 reindex 사용df = df.reindex(columns=['가','라','나','다'] 이건 행에도 가능하다 df = df.reindex(index..
2022. 7. 2.
seaborn 설정 : sns.set_style,context 그래프 다듬기
https://hleecaster.com/python-seaborn-set-style-and-context/ [seaborn] 스타일 사용자 정의 (set_style, set_context) - 아무튼 워라밸 본 포스팅에서는 seaborn의 set_style, set_context를 활용해 시각화된 자료를 세부적으로 스타일링 하는 방법을 소개한다. hleecaster.com Background color, Grid, Despine(축/테두리) 설정/해제 방법 style, context, 마지막 부분에 rc(run command) 딕셔너리까지 설명해준다. seaborn 그래프를 간편하게 다듬을 수 있다. sns.set_style("darkgrid") #darkgrid.whitegrid,ticks,dark,..
2022. 6. 30.