Get FeatureStore Components | Teradata Package for Python - Get the FeatureStore Components - 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

get_feature

get_feature() retrieves the object of Feature from FeatureStore.

Example gets the feature 'sales_mar' from repo 'vfs_v1'.

>>> feature = fs.get_feature('sales_mar')
>>> feature
Feature(name=sales_mar)
>>>

get_entity

get_entity() retrieves the object of Entity from FeatureStore.

Example get the Entity 'admissions_id' from repo 'vfs_v1'.

>>> entity = fs.get_entity('admissions_id')
>>> entity
Entity(name=admissions_id)
>>>

get_data_souorce

get_data_source() retrieves the object of DataSource from FeatureStore.

Example gets the DataSource 'admissions' from repo 'vfs_v1'.

>>> ds = fs.get_data_source('admissions')
>>> ds
DataSource(name=admissions)
>>>

get_feature_group

get_feature_group() retrieves the object of FeatureGroup from FeatureStore.

Example gets FeatureGroup with group name 'sales' from repo 'vfs_v1'.

>>> fg = fs.get_feature_group('sales')
>>> fg
FeatureGroup(sales, features=[Feature(name=Jan), Feature(name=Feb), Feature(name=Apr), Feature(name=Mar)], entity=Entity(name=sales), data_source=DataSource(name=sales))
>>>