I've been researching how to export BigQuery data into Pandas. There are two methods:
Export the file to a CVS and load it - https://cloud.google.com/bigquery/exporting-data-from-bigquery
Directly pull the data into a pandas frame. This doesn't seem to work but here is the method - pandas.io.gbq.read_gbq(query, project_id=None, index_col=None, col_order=None, reauth=False) . It appears gbq has been discontinued?
Could someone please suggest the best and most efficient way to go about this?
Thank you.