Thursday, September 4, 2025
HomeLanguagesPython | Pandas Series.data

Python | Pandas Series.data

Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.

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.data attribute returns the data pointer of the underlying data for the given Series object.

Syntax:Series.data

Parameter : None

Returns : data pointer

Example #1: Use Series.data attribute to find the data pointer of the given Series object.




# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series(['New York', 'Chicago', 'Toronto', 'Lisbon'])
  
# Creating the row axis labels
sr.index = ['City 1', 'City 2', 'City 3', 'City 4'] 
  
# Print the series
print(sr)


Output :

Now we will use Series.data attribute to return the data pointer for the given Series object.




# return the data pointer
sr.data


Output :

As we can see in the output, the Series.data attribute has returned the data pointer of the given Series object. It is the location where the object is stored.
 
Example #2 : Use Series.data attribute to find the data pointer of the given Series object.




# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series(['1/1/2018', '2/1/2018', '3/1/2018', '4/1/2018'])
  
# Creating the row axis labels
sr.index = ['Day 1', 'Day 2', 'Day 3', 'Day 4']
  
# Print the series
print(sr)


Output :

Now we will use Series.data attribute to return the data pointer for the given Series object.




# return the data pointer
sr.data


Output :

As we can see in the output, the Series.data attribute has returned the data pointer of the given Series object. It is the location where the object is stored.

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6628 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11858 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS