bigframes.pandas.read_gbq_object_table#

bigframes.pandas.read_gbq_object_table(object_table: str, *, name: str | None = None) DataFrame[source]#

Read an existing object table to create a BigFrames ObjectRef DataFrame. Use the connection of the object table for the connection of the ObjectRef. This function dosen’t retrieve the object table data. If you want to read the data, use read_gbq() instead.

Note

BigFrames ObjectRef is subject to the “Pre-GA Offerings Terms” in the General Service Terms section of the Service Specific Terms(https://cloud.google.com/terms/service-terms#1). Pre-GA products and features are available “as is” and might have limited support. For more information, see the launch stage descriptions (https://cloud.google.com/products#product-launch-stages).

Parameters:
  • object_table (str) – name of the object table of form <PROJECT_ID>.<DATASET_ID>.<TABLE_ID>.

  • name (str or None) – the returned ObjectRef column name.

Returns:

Result BigFrames DataFrame.

Return type:

bigframes.pandas.DataFrame