๐ตPandas 1. Series
1. Series
1. Series
๐ต ์๋ฆฌ์ฆ๋ ํ / ์ด์ ๊ตฌ๋ถ์ด ์์ต๋๋ค.
๐ต index ์ values ๋ง์ ๊ฐ์ง๋ ๋ฐ์ดํฐํ์์ ๋๋ค.
2. Series ์์ฑ
2.1. index๋ฅผ ๋ฐ๋ก ์ง์ ํด์ ๋ง๋ค๊ธฐ
๐ต pandas ๋ผ์ด๋ธ๋ฌ๋ฆฌ import
import pandas as pd
๐ต pd.Series(๋ฆฌ์คํธ)
a = pd.Series(["a","b","c","d"])
a
>>
0 a
1 b
2 c
3 d
dtype: object
์ธ๋ฑ์ค๋ฅผ ๋ฐ๋ก ์ง์ ํ์ง ์๋ ๊ฒฝ์ฐ default ๊ฐ์ 0,1,2,3โฆ ์ผ๋ก ์๋์ผ๋ก ์ค์ ๋ฉ๋๋ค.
๐ต .index( )
a.index = [4,5,6,7]
a
>>
4 a
5 b
6 c
7 d
dtype: object
.index( ) ํจ์๋ฅผ ์ด์ฉํ์ฌ ์ธ๋ฑ์ค์ ์ ๊ทผํ ์ ๋ค์ต๋๋ค.
2.2. index ๋์ ์ ์ธํ๊ธฐ
๐ต pd.Series(๋ฆฌ์คํธ, ์ธ๋ฑ์ค๋ฆฌ์คํธ)
b = pd.Series([1,2,3,4], index = ["A","B","C","D"])
b
>>
A 1
B 2
C 3
D 4
dtype: int64
index์ ๋ฌธ์์ด๋ ๋ค์ด๊ฐ ์ ์์ต๋๋ค.
3. Series์ ์ ๊ทผํ๊ธฐ
3.1. value ๊ฐ ๋ณ๊ฒฝํ๊ธฐ
๐ต ์ธ๋ฑ์ค๋ก ์ ๊ทผ
์๋ก์ด series ๋ฐ์ดํฐ c๋ฅผ ์ ์ธํด ๋ด ์๋ค.
c = pd.Series([1,2,3,4])
c
>>
0 1
1 2
2 3
3 4
dtype: int64
[ ] ๋ฅผ ์ด์ฉํ์ฌ ์ธ๋ฑ์ค์ ์ ๊ทผํฉ๋๋ค. ์ฌ๊ธฐ์๋ index 1์ ์ ๊ทผํ๋ ๊ฒ๋๋ค!!
c[1] = "A"
c
>>
0 1
1 A
2 3
3 4
dtype: object
๊ทธ ๊ฒฐ๊ณผ index 1์ value๊ฐ A๋ก ๋ณ๊ฒฝ๋ ๊ฒ์ ํ์ธํ ์ ์์ต๋๋ค.
๋ํ int64์๋ ์๋ฃํ์ด ์ซ์๋ค ์ฌ์ด์ ๋ฌธ์๊ฐ ๋ค์ด๊ฐ์ object๋ก ๋ณํ ๊ฒ์ ํ์ธํด๋ด ์๋ค.
3.2. ๊ฐ ์ญ์ ํ๊ธฐ
๐ต del
del c[1]
c
>>
0 1
2 3
3 4
dtype: object
index 1์ value๊ฐ ์ญ์ ๋ ๊ฒ์ ํ์ธํ ์ ์์ต๋๋ค.
3.3. ์๋ฃํ ๋ณ๊ฒฝํ๊ธฐ
๐ต .astype(dtype)
c = c.astype("int64")
c
>>
0 1
2 3
3 4
dtype: int64
object์๋ ์๋ฃํ์ด int64๊ฐ ๋์์์ ํ์ธํ ์ ์์ต๋๋ค!!
Leave a comment