GoogleCloudPlatform / GoogleCloudPlatform/training-data-analyst
Error in courses/machine_learning/deepdive2/launching_into_ml/labs/python.BQ_explore_data.ipynb lab
- Dominant language
- Jupyter Notebook
- Stars
- 8.6k
- Forks
- 6.1k
- Avg merge
- 4h 44m
- Merged PRs (30d)
- 2
Description
https://github.com/GoogleCloudPlatform/training-data-analyst/blob/master/courses/machine_learning/deepdive2/launching_into_ml/labs/python.BQ_explore_data.ipynb
The queries to BQ to extract trips from the dataset fail
```
%%bigquery
SELECT
FORMAT_TIMESTAMP(
"%Y-%m-%d %H:%M:%S %Z", pickup_datetime) AS pickup_datetime,
pickup_longitude, pickup_latitude, dropoff_longitude,
dropoff_latitude, passenger_count, trip_distance, tolls_amount,
fare_amount, total_amount
# TODO 3: Set correct BigQuery public dataset for nyc-tlc yellow taxi cab trips
# Tip: For projects with hyphens '-' be sure to escape with backticks ``
FROM
LIMIT 10
```
Here is the error
```
Could not save output to variable 'trips'.
ERROR:
_blocking_poll() got an unexpected keyword argument 'retry'
```
Contributor guide
Assessment
This issue has not been assessed yet.