filter() Method | Teradata Python Package - filter() Method - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798

The filter method subsets rows based on the index values of a DataFrame or columns of a DataFrame according to the labels in the specified index.

The filter is applied to the columns of the DataFrame when axis equals 'columns' (or 1). Otherwise, the filter is applied to the values of the DataFrame index when axis equals 'rows' (or 0).

There are three ways to filter using the filter method: item based, substring based and using regular expression. These ways are mutually exclusive in the sense that you must only use one of the following parameters: items, like, or regex.