Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
Tags
- kotlin
- streamlit
- 자바
- 기록
- 자바스크립트
- java
- HTML
- 제이쿼리
- mlb stats api
- oracle
- 파이썬
- 스프링
- 배포
- 시간
- 어플
- CSS
- 프로젝트
- 코틀린
- gcp
- 안드로이드
- Android
- Spring
- JQuery
- javascript
- MLB
- 오라클
- 앱
- Python
- 판다스
- pandas
Archives
- Today
- Total
목록Sort (1)
develope_kkyu
[Python] pandas 예제 - 1
https://pandas.pydata.org/docs/user_guide/10min.html에 나와 있는 pandas 예제 코드를 살펴본다. import pandas as pd import numpy as np 객체 생성 Series s = pd.Series([1, 3, 5, np.nan, 6, 8]) s Out: 0 1.0 1 3.0 2 5.0 3 NaN 4 6.0 5 8.0 dtype: float64 DataFrame dates = pd.date_range("20130101", periods=6) # 20130101 ~ 20130106의 범위 dates Out: DatetimeIndex(['2013-01-01', '2013-01-02', '2013-01-03', '2013-01-04', '2013-..
Python
2022. 12. 30. 12:37