빅데이터 전문가 되기

라이브러리 자료모음 본문

Python

라이브러리 자료모음

지야소이 2023. 4. 14. 16:34

👀 Pandas 자료 모음

 

👉 pandas 공식홈페이지 

https://pandas.pydata.org

 

pandas - Python Data Analysis Library

pandas pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language. Install pandas now!

pandas.pydata.org

 

👉 pandas에 대한 코드 확인 가능

https://github.com/pandas-dev/pandas

 

GitHub - pandas-dev/pandas: Flexible and powerful data analysis / manipulation library for Python, providing labeled data struct

Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more - GitHub - pandas-dev/...

github.com

 

👉 [python 완전정복 시리즈] 2편 : pandas DateFrame 완전정복

https://wikidocs.net/book/7188

 

[Python 완전정복 시리즈] 2편 : Pandas DataFrame 완전정복

안녕하세요! 파이썬 완전정복 시리즈의 저자 김태준 입니다. 파이썬 완전 정복 시리즈의 궁극적인 목표는 자신만의 알고리즘 트레이딩 프로그램 만들기 입니다. 본 도서는 독자…

wikidocs.net

 

 

 

 

👀 Matplotlib 자료 모음

 

👉 matplotlib 공식 홈페이지

https://matplotlib.org/stable/tutorials/index.html

https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.Rectangle.html

 

Tutorials — Matplotlib 3.7.1 documentation

This page contains more in-depth guides for using Matplotlib. It is broken up into beginner, intermediate, and advanced sections, as well as sections covering specific topics. Text matplotlib has extensive text support, including support for mathematical e

matplotlib.org

 

👉 공학자를 위한 Python

https://wikidocs.net/14604

 

4.3 Matplotlib의 이해

### Matplotlib의 구동 방식 Matplotlib은 두가지 방식의 API를 제공하고 있다. * Pyplot API : 이전절에 소개한 Matlab과 같이 커맨드 방…

wikidocs.net

 

 

👀 Seaborn 자료 모음

 

👉 seaborn 공식 홈페이지

https://seaborn.pydata.org/generated/seaborn.displot.html

 

seaborn.displot — seaborn 0.12.2 documentation

seaborn.displot seaborn.displot(data=None, *, x=None, y=None, hue=None, row=None, col=None, weights=None, kind='hist', rug=False, rug_kws=None, log_scale=None, legend=True, palette=None, hue_order=None, hue_norm=None, color=None, col_wrap=None, row_order=N

seaborn.pydata.org

 

 

 

 

 

 

'Python' 카테고리의 다른 글

Warnings(경고 제어)  (0) 2023.04.27
Selenium 라이브러리  (0) 2023.04.18
사용자 정의 함수  (4) 2023.04.13
List 요소 삭제  (0) 2023.04.13
시퀀스 자료형(sequence types)  (1) 2023.04.13
Comments