featurebyte.FeatureGroup.feature_names¶ feature_names: list[str] Description¶ List of feature names in the FeatureGroup object. Returns¶ list[str] List of feature names Examples¶ >>> table = catalog.get_table("GROCERYINVOICE") >>> view = table.get_view() >>> feature_group = view.groupby("GroceryCustomerGuid").aggregate_over( ... value_column=None, ... method="count", ... feature_names=["count_60days", "count_90days"], ... windows=["60d", "90d"], ... ) >>> feature_group.feature_names ['count_60days', 'count_90days'] See Also¶ FeatureGroup FeatureList.feature_names