# series
[pandas] 기본 자료 구조
pandas는 기본적으로 Series(시리즈)와 DataFrame(데이터프레임) 이 두 가지가 핵심 자료구조다. >## 1. Series Series는 일련의 객체를 담을 수 있는 1차원 배열 같은 자료구조다. 그리고 index(색인)과 value(정보, 값)을 가
판다스 기초 배우는 중 - 2월 23일
오티 2~3 [EDA/웹 크롤링/파이썬 프로그래밍] 16 이론 - colab 소개 구글 코랩 접속 (1) http://colab.research.google.com (2) 파일 - 새 노트 코드가 입력된 셀 실행 방법 (1) shift + enter (2) 또는 왼쪽 삼각형 모양의 플레이 버튼 선택 런타임 메뉴 이해하기 (1) 각 셀의 실행과 중단,...

pandas 대괄호 수에 따른 인덱싱 차이 - .loc DataFrame Series
우선 결론: 데이터프레임에서 특정 row를 추출하기 위해 .loc을 사용할 때, 괄호의 수에 따라 반환되는 값의 데이터타입이 달라진다.결과:결과를 보면, 1) 대괄호가 하나인 경우에는 해당 인덱스를 갖는 row의 데이터만 추출되어 Series타입으로 반환되고, 2) 대

Notion API master series 24 - Analysis - Sync Block
It's not the end. Chan is back again. For this time, I serialize for the Sync Block function.

Notion API master series 23 - Analysis - List all users & Retrieve your token's bot user
We can inquire with API for the whole user. user_list = notion.users.list()

Notion API master series 22 - Analysis - Retrieve a database & Retrieve a user
We try to retrieve for getting database information. Use the search method for bringing database_id.

Notion API master series 21 - Analysis - Update database
Let's update the database. We can change the 'title' of 'database' or 'properties' value with this method.

Notion API master series 20 - Analysis - Create a database
'parent' value is from 'parent' of 'page'. In other words, creating the 'parent' page is available. It is unavailable 'parent' database to create a da

Notion API master series 19 - Analysis - Query a database
The database is bunch of a page. We can bring the data through the query we want. First, get database_id via search and do retrieve.

Notion API master series 18 - Analysis - Delete a block
We could predict that we can call 'Delete a block' with knowing block_id. For deleting specific block_id, let's call blocks.children.list.

Notion API master series 17 - Analysis - Append block children
block doesn't support 'create' but available append. Python user is a familiar word about append. It is a method for adding value to a list.

Notion API master series 16 - Analysis - Update a block
Open the link and check the left menu order. The first order is not 'Add a block' or 'Create a block' and even show 'Update a block'.

Notion API master series 15 - Retrieve a block & Retrieve block children
Retrieve a block, Retrieve block children We learned about the page, so let's look into the block.

[python]_pandas_1(Series자료형)
Pandas 데이터 처리 및 분석을 위한 라이브러리 대용량 데이터를 안정적이면서도 간편하게 처리 서로 다른 데이터타입으로 열을 구성할 수 있음 (참고) Numpy : 전체 배열 원소를 동일한 타입으로 제한 주요 기능 데이터 입출력 : csv, excel, RDB
[Pandas] DataFrame의 컬럼 선택, 추가, 삭제하기 - del, pop, drop, insert
행(row) 과 열(column) 로 이루어진 2차원 자료인 데이터프레임의 특정 컬럼을 선택, 추가, 삭제하는 방법을 배워보는 것이 학습 목표이다.
[Pandas] 판다스의 구조 - Series, DataFrame 생성하기
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.

Notion API master series 14 - Analysis - Retrieve a page property Item
Already mentioned partly from Analysis -Retrieve a page, but there's one more point.
[Pandas] Series, DataFrame 이해하기 (1)
파이썬의 대표적인 데이터 분석 모듈인 Pandas(판다스)에 대해 알아보자. 판다스는 고수준의 자료 구조와 빠르고 쉬운 데이터 분석 도구를 제공하는 파이썬 라이브러리 이다. Pandas의 자료 구조로 시리즈(Series), 데이터프레임(DataFrame)를 알아봅시다.

[판다스(Pandas)]시리즈(Series) - Series 객체 생성, 인덱스 지정, 속성(attribute)
판다스의 자료구조 `시리즈`는, 1차원 배열로서 다음 세가지의 특징을 가집니다. 차원 배열 구조이자, 인덱스를 사용할 수 있고, 데이터 타입(dtype)을 가집니다.