MCPcopy
hub / github.com/feast-dev/feast / to_df

Method to_df

sdk/python/feast/saved_dataset.py:216–223  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

214 return self
215
216 def to_df(self) -> pd.DataFrame:
217 if not self._retrieval_job:
218 raise RuntimeError(
219 "To load this dataset use FeatureStore.get_saved_dataset() "
220 "instead of instantiating it directly."
221 )
222
223 return self._retrieval_job.to_df()
224
225 def to_arrow(self) -> pyarrow.Table:
226 if not self._retrieval_job:

Calls

no outgoing calls