매번 업데이트하고 있습니다.
* Multiple Plot 그릴 때 (특히 legend를 같이 그리고 싶을 때)
http://stackoverflow.com/questions/5484922/secondary-axis-with-twinx-how-to-add-to-legend
* Bar chart에서 bar 마다 색을 다르게 주기
http://stackoverflow.com/questions/18973404/settting-different-bar-color-in-matplotlib-python
* Scatter Plot 에서 point 에 색을 주기 (colormap 도 같이 있음)
http://matplotlib.org/examples/pylab_examples/scatter_demo2.html
* Plot에서 error를 색으로 칠하기
* Legend 사이즈 조절하기
http://stackoverflow.com/questions/20048352/how-to-adjust-the-size-of-matplotlib-legend-box
* 그래프 퀴퉁이에 text 넣기
http://stackoverflow.com/questions/8482588/putting-text-in-top-left-corner-of-matplotlib-plot
* Colorbar 뒤집어 그리기 (cm에 있는 colorbar)
http://stackoverflow.com/questions/3279560/invert-colormap-in-matplotlib
(가장 많은 추천의 답이 정답...!)
* 그림 png로 저장할 때 크기 및 해상도 조절하기
* PolyCollection 사용하기 (Polygon을 그리고 색을 정해줄 수 있음)
http://matplotlib.org/examples/api/collections_demo.html
* Discrete color bar 만들기 (polygon 색칠할 때 색을 정해줄 경우, 이걸로 우회하여 해결... 어떻게 폴리곤마다 색을 지정해주는지는 아직 모르겠음..)
http://stackoverflow.com/questions/14777066/matplotlib-discrete-colorbar
* Discrete color bar 만들기2 -> 자신이 원하는 색으로 만드는 방법. 꽤 쉬움..
http://stackoverflow.com/questions/9707676/defining-a-discrete-colormap-for-imshow-in-matplotlib
* Axis 눈금을 동등하게 그리기
http://matplotlib.org/examples/pylab_examples/axis_equal_demo.html
* Imshow에서 square 로 plot 하기. 사실 aspect 를 조절하면 되는데, 이걸 계산해서 square로 만들어줘야 하니까... 좀 번거로움.
http://stackoverflow.com/questions/7965743/python-matplotlib-setting-aspect-ratio
* 3D plot from data
http://stackoverflow.com/questions/12730436/matplotlib-plotting-non-uniform-data-in-3d-surface
*Scatter plot에서 point마다 label 주기
http://stackoverflow.com/questions/5147112/matplotlib-how-to-put-individual-tags-for-a-scatter-plot (Gorgeous!)
'Study > Computer' 카테고리의 다른 글
numpy array 잘라쓰기 (0) | 2014.06.17 |
---|---|
Python으로 n-gram 만들기 (0) | 2014.05.22 |
위도, 경도 검색 프로그램 (0) | 2014.05.09 |
Too many open files 에러가 로그에 남을 때 (0) | 2014.04.07 |
py2exe로 pyQT4 코드 exe로 만들기 (0) | 2014.03.13 |