I am trying to read a GCP BigTable – table to a pandas dataframe, and currently, the function I am using to fetch rows from BigTable is read_rows(), which returns PartialRowData. Code: Output: <class ‘google.cloud.bigtable.row_data.PartialRowData’> Query: How do we read the values from…