Pandas DataFrame truncate() Method – Be on the Right Side of Change (original) (raw)


Preparation

Before any data manipulation can occur, two (2) new libraries will require installation.

To install these libraries, navigate to an IDE terminal. At the command prompt ($), execute the code below. For the terminal used in this example, the command prompt is a dollar sign ($). Your terminal prompt may be different.

$ pip install pandas

Hit the <Enter> key on the keyboard to start the installation process.

$ pip install numpy

Hit the <Enter> key on the keyboard to start the installation process.

If the installations were successful, a message displays in the terminal indicating the same.


Feel free to view the PyCharm installation guide for the required libraries.


Add the following code to the top of each code snippet. This snippet will allow the code in this article to run error-free.

import pandas as pd import numpy as np


The truncate() method truncates a DataFrame/Series before and after a selected index value.

The syntax for this method is as follows:

DataFrame.truncate(before=None, after=None, axis=None, copy=True)

Parameter Description
before Truncate (remove) rows before a said index value. The data type can be a date, string, or integer.
after Truncate (remove) rows after a said index value. The data type can be a date, string, or integer.
axis If zero (0) or index is selected, apply to each column. Default 0.If one (1) apply to each row.
copy If True, a copy of the truncated DataFrame/Series returns. This boolean is True by default.

For this example, we have a DataFrame containing a message.

df = pd.DataFrame({'C': ['f', 'i', 'n', 'x', 't', 'e', 'r'], 'O': ['p', 'u', 'z', 'z', 'l', 'e', 's'], 'D': ['a', 'w', 'e', 's', 'o', 'm', 'e'], 'E': ['w', 'a', 'y', '-', 't', 'o', '-'], 'R': ['l', 'e', 'r', 'n', '!', '!', '!']}, index=[1, 2, 3, 4, 5, 6, 7]) print(df)

result = df.truncate(before=2, after=4)
print(result)

Output

df

result

More Pandas DataFrame Methods

Feel free to learn more about the previous and next pandas DataFrame methods (alphabetically) here:

Also, check out the full cheat sheet overview of all Pandas DataFrame methods.