GoogleCloudPlatform / GoogleCloudPlatform/training-data-analyst
just a typo
- Dominant language
- Jupyter Notebook
- Stars
- 8.6k
- Forks
- 6.1k
- Avg merge
- 4h 44m
- Merged PRs (30d)
- 2
Description
**typo** = print(df_transport,5)
**fix** = print(df_transport)
**reasoning**
- typo just prints the number five after the database
- does not match JupyterLab notebook
**more information**
- code does not need to specify five rows, as pd defaults to this

- to change the default, you can use:
**pd.set_option('display.max_rows', 10)**

- otherwise, you can be more specific using head() and tail()
**print(df_transport.head(3))**
**print(df_transport.tail(7))**

https://github.com/GoogleCloudPlatform/training-data-analyst/blame/ef304517cc93313710241cd74b3a23b3b1cef7ab/courses/machine_learning/deepdive2/launching_into_ml/solutions/improve_data_quality.ipynb#L375
Contributor guide
Assessment
This issue has not been assessed yet.