- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Python Pandas - Return a tuple of the shape of the underlying data
To return a tuple of the shape of the underlying data, use the index.shape property in Pandas.
At first, import the required libraries −
import pandas as pd
Creating the index −
index = pd.Index(['Car','Bike','Truck','Car','Airplane'])
Display the index −
print("Pandas Index...\n",index)
Return a tuple of the shape of the underlying data −
print("\nA tuple of the shape of underlying data...\n",index.shape)
Example
Following is the code −
import pandas as pd # Creating the index index = pd.Index(['Car','Bike','Truck','Car','Airplane']) # Display the index print("Pandas Index...\n",index) # Return an array representing the data in the Index print("\nArray...\n",index.values) # Return a tuple of the shape of the underlying data print("\nA tuple of the shape of underlying data...\n",index.shape)
Output
This will produce the following code −
Pandas Index... Index(['Car', 'Bike', 'Truck', 'Car', 'Airplane'], dtype='object') Array... ['Car' 'Bike' 'Truck' 'Car' 'Airplane'] A tuple of the shape of underlying data... (5,)
- Related Articles
- Python Pandas - Return the dtype object of the underlying data
- Python Pandas - Return the Number of dimensions of the underlying data
- Python Pandas - Return the number of bytes in the underlying Index data
- Python Pandas - Return the Number of elements in the underlying Index data
- Return the underlying data as a view of the masked array in Numpy
- Python Pandas - Return a dataframe of the components of the TimedeltaIndex
- Python Pandas - Return the midpoint of the Interval
- Python Pandas - Return the Transpose of the index
- Python Pandas - Return a sorted copy of the index
- Python Pandas - Return a list of the Index values
- Python - Return an array representing the data in the Pandas Index
- Access to the underlying platform’s identifying data in Python
- Python - Return the minimum value of the Pandas Index
- Python - Return the maximum value of the Pandas Index
- Python Pandas - Return a string of the type inferred from the values

Advertisements