본문 바로가기

파이썬60

해결) 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.
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.
유튜브 나도코딩 : 수준급 무료강의 https://www.youtube.com/watch?v=PjhlUzp_cU0 요즘 페스트캠퍼스 유료강의 듣고 나도코딩 유튜브 보고있는데 유료강의보다 나은것 같다. 강의 시간도 길고, 타임라인으로 표시되어 있어서 복습하기도 편하다. 코딩강의가 조회수 많기가 쉽지않은데 보면 기본 10~20만이고 많은건 360만,200만... 보면 이유가 있다. 심플하고 타이트한 내용이라 좋다. 출퇴근 버스탈때 힘들어서 그냥 아무것도안하는데 요즘 버스타면 1분파이썬보고있다. 위에 소개한 데이터분석말고도 사무자동화, 머신러닝도 다루고있어서 나중에 꼭 볼 예정이다. 그 외에도 GUI프로그래밍, 웹스크래핑 등도 다루고있다. 2022. 7. 6.
함수 Parameter 매개변수 확인하는법 물음표를 사용하면 된다. sns.countplot? 2022. 7. 6.
Seaborn 공식사이트 공식사이트가면 그래프 유형별로 굉장히 친절하게 설명해준다. https://seaborn.pydata.org/index.html seaborn: statistical data visualization — seaborn 0.11.2 documentation Seaborn is a Python data visualization library based on matplotlib. It provides a high-level interface for drawing attractive and informative statistical graphics. For a brief introduction to the ideas behind the library, you can read the introductory note.. 2022. 7. 2.
해결) DataFrame에서 int64 자료형 숫자 천의단위마다 ,찍고 싶은데 어떡하는지 150,000 이런식으로 나오게 하고싶은데. 찾아봐도 잘 안나온다, 되게 간단한 질문이라 찾기도 쉬울줄 알았는데 아니다. pd.set_option('display.float_format', '{:,.2f}'.format) float64는 그냥 소수점 둘째 짜리까지 찍는 명령어를 배웠는데 int64는 모르겠다 정답 : apply lambda를 이용하는 방법 float형식은 display option으로 설정해줄수가 있었어서 그런 방법이 있을줄알았는데 진짜 구글에 한글도 쳐보고 영어로도 'pandas int separator', 'pandas thousand comma' 별에별거 다쳐봤는데 안나와서 그냥 apply lambda방식을 사용하기로함. 그리고 이게 좋은게 내가 원하는 열만 설정할수있는거라 또 좋다.. 2022. 7. 2.