I keep getting this error when trying to access one of the public datasets on BQ through Google Colabs:
Access Denied: Project bigquery-public-data: User does not have bigquery.jobs.create permission in project bigquery-public-data.
Here is the query I am trying to run:
`project_id = 'bigquery-public-data'
client = bigquery.Client(project=project_id)
%%bigquery --project bigquery-public-data
SELECT
COUNT(*) as total_rows
FROM `bigquery-public-data.samples.gsod``
Anyone have any ideas on where to go? Any help is appreciated