본문 바로가기

분류 전체보기259

enumerate : index와 value값을 동시에 알 수 있다. enumerate 원래 뜻 '열거하다' 주로 for문에서 사용한다. 자기 value뿐만아니라 index까지도 내뱉는다. 다른 예시. 풀어서보면 enumerate for문에 대한 이해가 조금 된다. 선 그래프의 marker마다 y값을 적는 코드. 그냥 그래프 enumerate를 사용해서 값 적기 사실 풀어쓰면 이런것. idx는 0,1,2... 이런식으로 증가하고 enumerate(y)니까 txt는 y값인 2, 4, 8로 증가한다. enumerate 응용. rect? bar? 이건 좀 이해가 안된다. enumerate(bar) 부분을 잘 모르겠다 아주 간단하고 깔끔하게 설명 https://cjh5414.github.io/python-for-index/ Python for 문 index, value 동시에 접.. 2022. 7. 11.
matplotlib : 선 그래프 여러개 그리기 plt.legend(ncol=3) legend열을 3개로 만들어줌 2022. 7. 10.
matplotlib : 선그래프 색,marker, 배경색,linestyles 그래프 색 변경 plt.plot(x,y, color='pink') 약자로 그래프 설정 mfc = marker face color ms = marker size mec = marker edge color ls = line style plt.plot(x, y, 'ro--') 처럼 color, marker, linestyle을 동시에 지정할 수 있다. 그래프 배경색도 설정가능하다, 마음에 드는 색을 찾고싶으면 구글에 color picker를 치면 hexcode,rgb를 알수있다. https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.plot.html matplotlib.pyplot.plot — Matplotlib 3.5.2 documentation An o.. 2022. 7. 10.
해결) plt.rcParams['lines.color'] = 'red' 안되는 이유 line graph에서 선 색좀 바꾸고싶은데 rcParams로 설정아무리해도 안됨. 공식홈피가도 line.color 관련된 글이 안보여서 스택오버플로우 찾아봄 https://stackoverflow.com/questions/26507506/matplotlib-changing-line-color-with-rcparams matplotlib changing line color with rcParams I just learned about the matplotlib.rcParams feature and so I tried to plot a very simple graph. import matplotlib.pyplot as plt x = [1,2,3,4,5] y = [5,3,7,9,2] plt.rcParams[.. 2022. 7. 10.
matplotlib : 범례(legend) https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.legend.html matplotlib.pyplot.legend — Matplotlib 3.5.2 documentation Place a legend on the Axes. The call signatures correspond to the following different ways to use this method: 1. Automatic detection of elements to be shown in the legend The elements to be added to the legend are automatically determined, when you do not matplotlib... 2022. 7. 9.
configure : 환경설정을 하다 2022. 7. 9.
궁금) mpl(matplotlib)과 plt(matplotlib.pyplot)의 차이점? import할때 누구는 import matplotlib as mpl 다른사람은 import matplotlib.pyplot as plt 로 하고, 또 어떨때는 두개 다 하기도하고.. 차이점이 뭘까해서 검색 일단 mpl.rc와 plt.rc는 같다 https://stackoverflow.com/questions/49658412/whats-the-difference-between-matplotlib-rc-and-matplotlib-pyplot-rc What's the difference between matplotlib.rc and matplotlib.pyplot.rc? I understand that in matplotlib, you can use rc or rcParams to custom the styl.. 2022. 7. 9.
링크 : 코딩용어 IT영단어정리(쉬움) https://brunch.co.kr/@hopeless/8 초보 개발자를 위한 IT영단어 정리 프로그래밍에서 자주 나오는 영어단어 정리 | 최종수정일 2020. 2. 26 본인은 수원스마트앱개발학원 이라는 개발자 양성 기관의 기관장으로써 교육하고 책 쓰는 개발자로써 그 동안 프로그래밍을 brunch.co.kr 2022. 7. 9.