Home »
Python »
Python Programs
How to take column slices of DataFrame in pandas?
Given a DataFrame, we have to take column slice.
By Pranit Sharma Last updated : September 20, 2023
Columns are the different fields that contain their particular values when we create a DataFrame. We can perform certain operations on both rows & column values. DataFrames are 2-dimensional data structures in pandas. DataFrames consists of rows, columns, and the data. DataFrame can be created with the help of python dictionaries or lists but in the real world, CSV files are imported and then converted into DataFrames. Sometimes, DataFrames are first written into CSV files.
Problem statement
Given a DataFrame, we have to take column slice.
Taking column slices of DataFrame in pandas
For this purpose, we will use pandas.DataFrame.loc[] property. This is a type of data selection method which takes the name of a row or column as a parameter. We can perform various operations using pandas.DataFrame.loc property. Inside loc property, the index value of the row comes first followed by the number of columns.
Syntax:
DataFrame.loc
Note
To work with pandas, we need to import pandas package first, below is the syntax:
import pandas as pd
Let us understand with the help of an example:
Python program to take column slices of DataFrame in pandas
# Importing pandas package
import pandas as pd
# Creating dictionary
d = {
'Fruits':['Apple','Orange','Banana'],
'Price':[50,40,30],
'Vitamin':['C','D','B6']
}
# Creating DataFrame
df = pd.DataFrame(d)
# Display original DataFrame
print("Original DataFrame:\n",df,"\n")
# Slicing DataFrame column wise
result = df.loc[:,'Price':'Vitamin']
# Display result
print("Sliced DataFrame:\n",result)
Output
Python Pandas Programs »