- 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 - Return an array representing the data in the Pandas Index
To return an array representing the data in the Pandas Index, use the index.values property in Pandas.
At first, import the required libraries −
import pandas as pd
Creating the index −
index = pd.Index(['Car','Bike','Truck','Ship','Airplane'])
Display the index −
print("Pandas Index...\n",index)
Return an array representing the data in the Index −
print("\nArray...\n",index.values)
Example
Following is the code −
import pandas as pd # Creating the index index = pd.Index(['Car','Bike','Truck','Ship','Airplane']) # Display the index print("Pandas Index...\n",index) # Return an array representing the data in the Index print("\nArray...\n",index.values) # Display the transpose of the index print("\nTranspose of the Pandas Index...\n",index.T)
Output
This will produce the following code −
Pandas Index... Index(['Car', 'Bike', 'Truck', 'Ship', 'Airplane'], dtype='object') Array... ['Car' 'Bike' 'Truck' 'Ship' 'Airplane'] Transpose of the Pandas Index... Index(['Car', 'Bike', 'Truck', 'Ship', 'Airplane'], dtype='object')
- Related Articles
- 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 a map representing the frequency of each data type in an array in JavaScript
- Python Pandas - Return unique values in the index
- Python Pandas - Return the Transpose of the index
- Python - Return the minimum value of the Pandas Index
- Python - Return the maximum value of the Pandas Index
- Python Pandas - Return the midpoint of each Interval in the IntervalArray as an Index
- python Pandas - Return the left endpoints of each Interval in the IntervalArray as an Index
- Python Pandas - Return the right endpoints of each Interval in the IntervalArray as an Index
- Python Pandas - Return a sorted copy of the index
- Python Pandas - Return the relative frequency from Index object
- Python Pandas - Return a list of the Index values
- Python Pandas - Return the memory usage of the Index values
- Python Pandas - Return a new Timestamp representing UTC day and time

Advertisements