Matplotlib - 그래프를 파일로 저장하기 : savefig
plt.savefig(fname, dpi, facecolor, format, bbox_inches, transparent) - fname : 파일 경로나 파이썬의 유사한 객체를 나타내는 문자열 (파일명.pdf) - dpi : figure의 인치당 도트 해상도, 기본값은 100 - facecolor : edgecolor로도 설정가능하며 배경 색상을 변경함, 기본값은 흰색 - format : 명시적 파일 포맷 (png, svg, pdf...) - bbox_inches : figure에서 저장할 부분 - transparent : 그림 배경을 투명하게 지정 (True를 넘기면 된다.) 아무 옵션 없이 그냥 저장 옵션 추가 : dpi=400, bbox_inches='tight' 이는 사진의 크기를 키운 것이 아니..
Matplotlib - plt : xlim, ylim
https://steadiness-193.tistory.com/151 Matplotlib - 그래프 꾸미기 : marker, markerfacecolor, markersize, color, linewidth, linestyle https://steadiness-193.tistory.com/150 Matplotlib - plt : xticks, yticks https://steadiness-193.tistory.com/149 Matplotlib - 선그래프, x축 라벨, y축 라벨, 그래프 제목, 범례 데이터 불러오기 서울에서.. steadiness-193.tistory.com 위 포스팅에서 만든 그래프를 이용한다. 기존 그래프 xlim x축의 최솟값과 최댓값을 설정한다. plt.xlim([최솟값, 최댓값..
Matplotlib - 그래프 꾸미기 : marker, markerfacecolor, markersize, color, linewidth, linestyle
https://steadiness-193.tistory.com/150 Matplotlib - plt : xticks, yticks https://steadiness-193.tistory.com/149 Matplotlib - 선그래프, x축 라벨, y축 라벨, 그래프 제목, 범례 데이터 불러오기 서울에서 경기도로 이동한 인구 데이터 값 import matplotlib.pyplot as plt 한글 폰트.. steadiness-193.tistory.com 위 포스팅에서 만든 그래프를 이용한다. 선 그래프의 꾸미기 옵션 옵션 설명 'o' 선이 아닌 점 그래프 marker 마커 모양 'o' ',' '^' '' '*' '+' 'v' '8' 's' 'p' 'h' 'D' '.' markerfacecolor 마커 배경..