MCPcopy Create free account
hub / github.com/feast-dev/feast / from_pandas

Method from_pandas

sdk/python/feast/infra/ray_initializer.py:274–276  ·  view source on GitHub ↗

Create dataset from pandas DataFrame using standard Ray.

(self, df: Any)

Source from the content-addressed store, hash-verified

272 return ray.data.from_huggingface(hf_dataset)
273
274 def from_pandas(self, df: Any) -> Any:
275 """Create dataset from pandas DataFrame using standard Ray."""
276 return ray.data.from_pandas(df)
277
278 def from_arrow(self, table: Any) -> Any:
279 """Create dataset from Arrow table using standard Ray."""

Callers 15

_remoteMethod · 0.45
upload_df_to_s3Function · 0.45
upload_df_to_redshiftFunction · 0.45
upload_df_to_athenaFunction · 0.45
_df_to_create_table_sqlFunction · 0.45
_ensure_executedMethod · 0.45
executeMethod · 0.45
executeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected