diff --git a/spec/API_specification/dataframe_api/dataframe_object.py b/spec/API_specification/dataframe_api/dataframe_object.py index d487cc98..c523d13c 100644 --- a/spec/API_specification/dataframe_api/dataframe_object.py +++ b/spec/API_specification/dataframe_api/dataframe_object.py @@ -838,3 +838,16 @@ def to_array_object(self, dtype: Any) -> Any: understanding that consuming libraries would then use the ``array-api-compat`` package to convert it to a Standard-compliant array. """ + + def collect(self) -> Any: + """ + Materialize the DataFrame. + + Non-lazy implementations may just return `self`. + + Returns + ------- + Any + The materialized object. + """ + ...