반응형
Pandas Tutorial
https://www.w3schools.com/python/pandas/default.asp
Pandas Tutorial
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
Pandas is a Python library.
Pandas is used to analyze data.
https://pypi.org/project/pandas/
pip install pandas
pandas
Powerful data structures for data analysis, time series, and statistics
pypi.org
Pandas http://bigdata.dongguk.ac.kr/lectures/Python/_book/pandas.html#pandas-dataframe
- 데이터 처리와 분석을 위한 라이브러리
- 행과 열로 이루어진 데이터 객체를 만들어 다룰 수 있음
- 대용량의 데이터들을 처리하는데 매우 편리
- pandas 자료구조
- Series: 1차원
- DataFrame: 2차원
- Panel: 3차원
- pandas 로딩
- import numpy as np # 보통 numpy와 함께 import
- import pandas as pd
""" Pandas Tutorial
https://www.w3schools.com/python/pandas/default.asp
Pandas is a Python library.
Pandas is used to analyze data.
"""
#import pandas
import pandas as pd #Now the Pandas package can be referred to as pd instead of pandas.
mydataset = {
'cars': ["BMW", "Volvo", "Ford"],
'passings': [3, 7, 2]
}
myvar = pd.DataFrame(mydataset)
print(myvar)
import pandas as pd
print(pd.__version__)
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] 한곳에서 끝내는 파이썬 & 머신러닝 & 딥러닝 (0) | 2023.07.07 |
---|---|
[python] iPad에서 파이썬 하기 (0) | 2023.07.04 |
[python] simple-colors (0) | 2023.06.09 |
공학자를 위한 Python (0) | 2023.06.04 |
[python] 스파이더, https://www.spyder-ide.org/ (0) | 2023.06.04 |