Checkpoints
Explore weather data
/ 25
Explore New York citizen complaints data
/ 25
Saving a new table of weather data
/ 20
Find correlation between weather and complaints
/ 30
Weather Data in BigQuery
GSP009
Overview
In this lab you will analyze historical weather observations using BigQuery and use weather data in conjunction with other datasets.
What you'll learn
In this lab, you'll:
- Carry out interactive queries on the BigQuery console.
- Combine and run analytics on multiple datasets.
Introduction
This lab uses two public datasets in BigQuery: weather data from NOAA and citizen complaints data from New York City.
You will encounter, for the first time, several aspects of Google Cloud that are of great benefit to scientists:
- Serverless. No need to download data to your machine in order to work with it - the dataset will remain on the cloud.
- Ease of use. Run ad-hoc SQL queries on your dataset without having to prepare the data, like indexes, beforehand. This is invaluable for data exploration.
- Scale. Carry out data exploration on extremely large datasets interactively. You don't need to sample the data in order to work with it in a timely manner.
- Shareability. You will be able to run queries on data from different datasets without any issues. BigQuery is a convenient way to share datasets. Of course, you can also keep your data private, or share them only with specific persons -- not all data need to be public.
The end-result is that you will find what types of municipal complaints are correlated with weather. For example, you will find (not surprisingly) that complaints about residential furnaces are most common when it is cold outside:
Prerequisites
This is a fundamental level lab and assumes some experience with BigQuery and SQL. If you have never worked with BigQuery or MySQL, the self-paced lab, BigQuery: Qwik Start - Console can get you up to speed with these Google Cloud services.
Setup and requirements
Before you click the Start Lab button
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.
This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
- Access to a standard internet browser (Chrome browser recommended).
- Time to complete the lab---remember, once you start, you cannot pause a lab.
How to start your lab and sign in to the Google Cloud console
-
Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is the Lab Details panel with the following:
- The Open Google Cloud console button
- Time remaining
- The temporary credentials that you must use for this lab
- Other information, if needed, to step through this lab
-
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
Note: If you see the Choose an account dialog, click Use Another Account. -
If necessary, copy the Username below and paste it into the Sign in dialog.
{{{user_0.username | "Username"}}} You can also find the Username in the Lab Details panel.
-
Click Next.
-
Copy the Password below and paste it into the Welcome dialog.
{{{user_0.password | "Password"}}} You can also find the Password in the Lab Details panel.
-
Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials. Note: Using your own Google Cloud account for this lab may incur extra charges. -
Click through the subsequent pages:
- Accept the terms and conditions.
- Do not add recovery options or two-factor authentication (because this is a temporary account).
- Do not sign up for free trials.
After a few moments, the Google Cloud console opens in this tab.
Task 1. Explore weather data
Open the BigQuery console
- In the Google Cloud Console, select Navigation menu > BigQuery.
The Welcome to BigQuery in the Cloud Console message box opens. This message box provides a link to the quickstart guide and the release notes.
- Click Done.
The BigQuery console opens.
- In the Explorer pane, click + ADD.
The Add data window opens.
-
Click Star a project by name under Additional sources.
-
Enter
bigquery-public-data
and click STAR.
In the BigQuery console you see two projects in the Explorer pane, one named your lab project ID, and one named bigquery-public-data.
-
In the Explorer pane of the BigQuery console, expand bigquery-public-data > noaa_gsod and select the gsod2014 table.
-
In the Table (gsod2014) window, click the Preview tab.
-
Examine the columns and some of the data values.
-
Paste the following in the query EDITOR:
- Click RUN. Look at the result and try to determine what this query does.
Click Check my progress below to verify you're on track in this lab.
Task 2. Explore New York citizen complaints data
-
In the Explorer pane of the BigQuery Console, select the newly added bigquery-public-data project and expand the new_york dataset and select 311_service_requests table.
-
Then click on the Preview tab. Your console should resemble the following:
-
Examine the columns and some of the data values.
-
If the editor has been closed, click "+" (Compose New Query) icon.
-
Paste the following into the query EDITOR:
-
Click RUN.
-
Look at the results to determine what the most common complaints are. You will try to determine if these complaints correlate to weather in a later part of this lab.
Click Check my progress below to verify you're on track in this lab.
Task 3. Saving a new table of weather data
-
In the Explorer pane of the BigQuery Console, click on the three dots next to your
Project ID
and then select Create dataset. -
In the Create dataset dialog, set the Dataset ID to
demos
and leave the other options at their default values. -
Click Create dataset. Your project now has a dataset named
demos
. -
Click "+" (Compose New Query) icon and then run the following query:
-
In the query EDITOR section, click More > Query settings.
-
In the Query settings dialog, set the following fields. Leave all others at their default value.
Destination:
select Set a destination table for query results
Dataset:
Type demos and select your dataset.
Table Id
: Type nyc_weather
Results size
: check Allow large results (no size limit)
-
Click SAVE
-
Click RUN.
The results are now saved in the dataset you created (demos).
-
Navigate back to More > Query settings and, in the
Destination field
select Save query results in a temporary table. This removes the demos dataset as a destination for future queries. -
Click SAVE to close the query.
Click Check my progress below to verify you're on track in this lab.
Task 4. Find correlation between weather and complaints
Compare the number of complaints and temperature using the CORR function.
- Go back to the query EDITOR and run the following query:
The results indicate that Heating complaints are negatively correlated with temperature (i.e., more heating calls on cold days) and calls about dead trees are positively correlated with temperature (i.e., more calls on hot days).
Next, compare the number of complaints and wind speed with the CORR function.
- Click "+" (Compose New Query) icon and run the following query:
- Notice that the Corr columns are both negative for noise related complaints — Do you have a hypothesis for why noise complaints reduce on windy days? Are the coefficients statistically sufficient?
As you can see, BigQuery can give you insights into many different problems from many different angles.
Click Check my progress below to verify you're on track in this lab.
Summary
In this lab you did ad-hoc queries on two datasets. You were able to query the data without setting up any clusters, creating any indexes, etc. You were also able to mash up the two datasets and get some interesting insights. All without ever leaving your browser!
Congratulations!
You learned how to run some very interesting queries on BigQuery!
Finish your quest
This self-paced lab is part of the Scientific Data Processing quest. A quest is a series of related labs that form a learning path. Completing this quest earns you the badge above, to recognize your achievement. You can make your badge (or badges) public and link to them in your online resume or social media account. Enroll in this quest and get immediate completion credit if you've taken this lab. See other available quests.
Take your next lab
Continue your quest with Distributed Image Processing in Cloud Dataproc, or try one of these:
- Predict Baby Weight with TensorFlow on Vertex AI
- Analyzing Natality Data using Vertex AI and BigQuery
Next steps / Learn more
-
For more fun analysis of the NYC data and how it is correlated with weather, see Reto Meier's blog post
-
Learn more about BigQuery public data sets.
Google Cloud training and certification
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated June 27, 2023
Lab Last Tested June 27, 2023
Copyright 2023 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.