How do I load tables from BigQuery into my notebook?
CompletedFor loading tables from bigquery, do you guys have a standard way of doing that? We are encountering some weird library issues and i was wondering if this is a problem that's already been solved.
-
Official comment
!pip install pandas-gbq pandas -U
import pandas as pd
pd.read_gbq(""" select * from database.tablename """)Comment actions
Please sign in to leave a comment.
Comments
1 comment