Pandas Series.to_frame() 함수
Minahil Noor
2023년1월30일
-
pandas.Series.to_frame()
의 구문 : -
예제 코드 : 시리즈를 데이터 프레임으로 변환하는
Series.to_frame()
메서드 -
예제 코드 :
Series.to_frame()
메서드를 사용하여 특정 열 이름을 가진 데이터 프레임으로 시리즈 변환
Python Pandas Series.to_frame()
함수는 주어진 시리즈를 데이터 프레임으로 변환합니다.
pandas.Series.to_frame()
의 구문 :
Series.to_frame(name=None)
매개 변수
name |
객체 유형 매개 변수입니다. 시리즈에 이름이 있으면 전달 된 이름이 시리즈 이름을 대체해야 함을 알려줍니다. |
반환
시리즈를 나타내는 데이터 프레임을 반환합니다.
예제 코드 : 시리즈를 데이터 프레임으로 변환하는Series.to_frame()
메서드
import pandas as pd
series = pd.Series([ 'Rose', 'Jasmine', 'Lili', 'Tulip', 'Hibiscus', 'Sun Flower', 'Orchid', 'Carnation','Irises', 'Gardenias'])
print("The Original Series is: \n")
print(series)
dataframe = series.to_frame()
print("The Dataframe is: \n")
print(dataframe)
출력:
The Original Series is:
0 Rose
1 Jasmine
2 Lili
3 Tulip
4 Hibiscus
5 Sun Flower
6 Orchid
7 Carnation
8 Irises
9 Gardenias
dtype: object
The Dataframe is:
0
0 Rose
1 Jasmine
2 Lili
3 Tulip
4 Hibiscus
5 Sun Flower
6 Orchid
7 Carnation
8 Irises
9 Gardenias
함수는 주어진 시리즈를 나타내는 데이터 프레임을 반환했습니다.
예제 코드 :Series.to_frame()
메서드를 사용하여 특정 열 이름을 가진 데이터 프레임으로 시리즈 변환
import pandas as pd
series = pd.Series([ 'Rose', 'Jasmine', 'Lili', 'Tulip', 'Hibiscus', 'Sun Flower', 'Orchid', 'Carnation','Irises', 'Gardenias'])
print("The Original Series is: \n")
print(series)
dataframe = series.to_frame(name= 'Flowers')
print("The Dataframe is: \n")
print(dataframe)
출력:
The Original Series is:
0 Rose
1 Jasmine
2 Lili
3 Tulip
4 Hibiscus
5 Sun Flower
6 Orchid
7 Carnation
8 Irises
9 Gardenias
dtype: object
The Dataframe is:
Flowers
0 Rose
1 Jasmine
2 Lili
3 Tulip
4 Hibiscus
5 Sun Flower
6 Orchid
7 Carnation
8 Irises
9 Gardenias
이제 열 이름은Flowers
입니다.