Teradata Package for Python Function Reference on VantageCloud Lake - num_filters - Teradata Package for Python - Look here for syntax, methods and examples for the functions included in the Teradata Package for Python.
Teradata® Package for Python Function Reference on VantageCloud Lake
- Deployment
- VantageCloud
- Edition
- Lake
- Product
- Teradata Package for Python
- Release Number
- 20.00.00.11
- Published
- August 2026
- ft:locale
- en-US
- ft:lastEdition
- 2026-08-13
- dita:id
- TeradataPython_FxRef_Lake_2000
- Product Category
- Teradata Vantage
- teradataml.store.feature_store.models.FilterManager.num_filters
- DESCRIPTION:
Returns the total number of filters available in the FilterManager.
PARAMETERS:
None
RETURNS:
int
RAISES:
None
EXAMPLES:
>>> from teradataml import DataFrame, load_example_data, FilterManager
>>> load_example_data('dataframe', 'admissions_train')
>>> df = DataFrame("admissions_train")
>>> fm = FilterManager(repo='vfs_v1', name='stats_filter_manager')
>>> fm.load_filter(df=df.groupby('stats').count()[['stats']])
True
>>> fm.num_filters
3