Post

[Python] Series 행반환 :: Series.head( ) | tail( ) | sample( )

[Python] Series 행반환 :: Series.head( ) | tail( ) | sample( )

Series 행 반환

Reference Pandas In Action
1
2
3
4
5
import pandas as pd

values = range(0,500,5)
nums = pd.Series(data = values)
nums
1
2
3
4
5
6
7
8
9
10
11
12
0       0
1       5
2      10
3      15
4      20
     ... 
95    475
96    480
97    485
98    490
99    495
Length: 100, dtype: int64

1. Series 상위 행 반환 :: Series.head( )

1
2
3
Series.head(
    n = 5
)
  • 처음 n개의 행을 반환
  • Option
    • n : 선택할 행 수
1
nums.head() # nums의 상위 5개의 행 반환
1
2
3
4
5
6
0     0
1     5
2    10
3    15
4    20
dtype: int64

2. Series 하위 행 확인 :: Series.tail( )

1
2
3
Series.tail(
    n = 5
)
  • 마지막 n개의 행을 반환
  • Option
    • n : 선택할 행 수
1
nums.tail() # nums의 하위 5개의 행 반환
1
2
3
4
5
6
95    475
96    480
97    485
98    490
99    495
dtype: int64

3. Series 임의 값 추출 :: Series.sample( )

1
2
3
4
5
Series.sample(
    n = None,
    random_state = None,  
    axis = None           # 0 or 'index' | 1 or 'columns'
)
  • 객체의 축에서 임의의 항목 샘플을 반환
  • Option
    • n : 반환할 축의 항목 수
    • random_state : 난수 생성기의 시드 값
    • axis : 반환할 축
1
nums.sample(3) # nums 중 임의의 3개의 행
1
2
3
4
14     70
35    175
84    420
dtype: int64
This post is licensed under CC BY 4.0 by the author.