diff --git a/packages/pandas-gbq/README.rst b/packages/pandas-gbq/README.rst index 560b0c58a678..a398c08f9210 100644 --- a/packages/pandas-gbq/README.rst +++ b/packages/pandas-gbq/README.rst @@ -45,8 +45,15 @@ Perform a query import pandas_gbq + # If running in your local environment or Colab, use the code below and specify your GCP project ID + # result_dataframe = pandas_gbq.read_gbq("SELECT * FROM bigquery-public-data.usa_names.usa_1910_2013 LIMIT 10", project_id="your-project-id") + result_dataframe = pandas_gbq.read_gbq("SELECT column FROM dataset.table WHERE value = 'something'") +.. note:: + + A Google Cloud project ID can be quickly obtained as described `here `_. + Upload a dataframe ~~~~~~~~~~~~~~~~~~