Friday, January 30, 2026
HomeLanguagesPython | Pandas Series.to_frame()

Python | Pandas Series.to_frame()

Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index.

Pandas Series.to_frame() function is used to convert the given series object to a dataframe.

Syntax: Series.to_frame(name=None)

Parameter :
name : The passed name should substitute for the series name (if it has one).

Returns : data_frame : DataFrame

Example #1: Use Series.to_frame() function to convert the given series object to a dataframe.




# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series(['New York', 'Chicago', 'Toronto', 'Lisbon', 'Rio', 'Moscow'])
  
# Create the Datetime Index
didx = pd.DatetimeIndex(start ='2014-08-01 10:00', freq ='W', 
                     periods = 6, tz = 'Europe/Berlin') 
  
# set the index
sr.index = didx
  
# Print the series
print(sr)


Output :

Now we will use Series.to_frame() function to convert the given series object to a dataframe.




# convert to dataframe
sr.to_frame()


Output :

As we can see in the output, the Series.to_frame() function has successfully converted the given series object to a dataframe.

Example #2: Use Series.to_frame() function to convert the given series object to a dataframe.




# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series([19.5, 16.8, 22.78, 20.124, 18.1002])
  
# Print the series
print(sr)


Output :

Now we will use Series.to_frame() function to convert the given series object to a dataframe.




# convert to dataframe
sr.to_frame()


Output :

As we can see in the output, the Series.to_frame() function has successfully converted the given series object to a dataframe.

RELATED ARTICLES

Most Popular

Dominic
32478 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6987 POSTS0 COMMENTS
Ted Musemwa
7222 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6917 POSTS0 COMMENTS