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.
matplotlib : 폰트 크기, 그래프 크기
import matplotlib.pylab as plt import matplotlib.font_manager as fm import matplotlib as mpl import numpy as np # 설치된 폰트 출력 plt.rcParams['font.family'] = 'NanumGothic' # 데이터 생성 x = np.arange(5) y = [80, 70, 40, 90, 60] xlabel = ['국어', '수학', '영어', '과학', '미술'] # plt.bar → 가로 막대 plt.figure(figsize=(15,5)) plt.rc('font', size=20) plt.barh(x, y) plt.yticks(x, xlabel) plt.xlabel('점수') plt.show()
2022. 6. 29.
Pandas DataFrame : index행 중간에 삽입하는법 링크
http://daplus.net/python-pandas-%EB%8D%B0%EC%9D%B4%ED%84%B0-%ED%94%84%EB%A0%88%EC%9E%84%EC%97%90-%ED%96%89-%EC%82%BD%EC%9E%85/ [python] Pandas 데이터 프레임에 행 삽입 - 리뷰나라 데이터 프레임이 있습니다. s1 = pd.Series([5, 6, 7]) s2 = pd.Series([7, 8, 9]) df = pd.DataFrame([list(s1), list(s2)], columns = ["A", "B", "C"]) A B C 0 5 6 7 1 7 8 9 [2 rows x 3 columns] 다음을 얻으려면 첫 번째 행 [2, 3, 4]을 추가 daplus.net 번역체지만 중간 or 맨위에 ..
2022. 6. 25.