We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4253fab commit b6c4a08Copy full SHA for b6c4a08
1 file changed
packages/pandas-gbq/README.rst
@@ -45,8 +45,15 @@ Perform a query
45
46
import pandas_gbq
47
48
+ # If running in your local environment or Colab, use the code below and specify the GCP project ID "PROJECT_ID"
49
+ # result_dataframe = pandas_gbq.read_gbq("SELECT * FROM bigquery-public-data.usa_names.usa_1910_2013 LIMIT 10", project_id=PROJECT_ID)
50
+
51
result_dataframe = pandas_gbq.read_gbq("SELECT column FROM dataset.table WHERE value = 'something'")
52
53
+.. note::
54
55
+ A Google Cloud project ID can be quickly obtained as described `here <https://docs.cloud.google.com/bigquery/docs/sandbox>`_.
56
57
Upload a dataframe
58
~~~~~~~~~~~~~~~~~~
59
0 commit comments