arrow_back

Creating Measures and Dimensions Using LookML

가입 로그인
Test and share your knowledge with our community!
done
Get access to over 700 hands-on labs, skill badges, and courses

Creating Measures and Dimensions Using LookML

Lab 1시간 30분 universal_currency_alt No cost show_chart 입문
Test and share your knowledge with our community!
done
Get access to over 700 hands-on labs, skill badges, and courses

GSP890

Google Cloud self-paced labs logo

Overview

Looker is a modern data platform in Google Cloud that lets you analyze and visualize your data interactively. You can use Looker to do in-depth data analysis, integrate insights across different data sources, build actionable data-driven workflows, and create custom data applications.

In Looker, dimensions are unique attributes of the data that help you to describe data. For example, the city and elevation of an airport may be different dimensions within an airport dataset. Measures are aggregations of one or more dimensions (or unique attributes of the data) such as a count or average. Measures let you calculate your Key Performance Indicators (KPIs) and help your business users analyze data using different aggregated attributes.

In this lab, you learn how to create different types of dimensions and measures in LookML as a Looker developer. You also learn how to modify models of Explores, which are data views that serve as the foundation for self-service exploration by the business users in Looker.

For this lab, a project called qwiklabs-ecommerce has been created for you in LookML. This project is based on a mock e-commerce dataset that will enable you to create business KPIs using dimensions and measures created using LookML. You can learn more about LookML modeling in the Looker documentation.

Objectives

In this lab, you will learn how to:

  • Modify an existing LookML project (qwiklabs-ecommerce) published by a Looker admin.
  • Create different types of dimensions and measures in LookML to address your business users' questions.
  • Test your LookML changes in development mode.
  • Use the Explore interface to view the dimensions and measures that you have created in the modified LookML project.

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).
Note: Use an Incognito or private browser window to run this lab. This prevents any conflicts between your personal account and the Student account, which may cause extra charges incurred to your personal account.
  • Time to complete the lab---remember, once you start, you cannot pause a lab.
Note: If you already have your own personal Google Cloud account or project, do not use it for this lab to avoid extra charges to your account.

How to start your lab and sign in to Looker

  1. When ready, click Start Lab button.

    A new panel will appear with the temporary credentials that you must use for this lab.

    If you need to pay for the lab, a pop-up will open for you to select your payment method.

  2. Note your lab credentials in the left pane. You will use them to sign in to the Looker instance for this lab.

    Note: If you use other credentials, you will get errors or incur charges.
  3. Click Open Looker.

  4. Enter the provided Username and Password in the Email and Password fields.

    Important: You must use the credentials from the Connection Details panel on this page. Do not use your Google Cloud Skills Boost credentials. If you have your own Looker account, do not use it for this lab.
  5. Click Log In.

    After a successful login, you will see the Looker instance for this lab.

Task 1. Creating dimensions

In Looker, a dimension is a group-able field and can be used to filter query results. It can be:

  • An attribute, which has a direct association to a column in an underlying table
  • A fact or numerical value
  • A derived value, computed based on the values of other fields in a single row

For example, dimensions for a Products view might include product name, product model, product color, product price, product created date, and product end-of-life date.

Dimensions let you create buckets of data points to analyze your KPIs using different attributes. You can create different types of dimensions like time, numeric, yesno and string to slice and dice your data.

Create a new dimension for age group tiers

In this section, you will create a new dimension named age_tier based off of the age dimension. This dimension will list ranges of ages. You will do this by adding a dimension that groups individual ages into the following age group tiers: 18, 25, 35, 45, 55, 65, 75, 90.

  1. First, on the bottom left of the Looker User Interface, click the toggle button to enter Development mode.

Development mode toggle

  1. Click the Develop tab and then select the qwiklabs-ecommerce LookML project.

  2. Once you are in the qwiklabs-ecommerce project, click the arrow next to views to see a list of view names.

  3. Click users.view.

  4. In users.view, locate the dimension for age. Your file should resemble the following:

users-view file

Dimension fields, such as age correspond to your underlying database table, or computed values based on other dimensions.

The editor gives you suggestions as you type, but if you get stuck or need to see a list of different parameters and their attributes, you can always refer to the Quick Help menu on the right-hand side of the IDE.

  1. On a new line under the dimension for age, start by defining a new dimension for age_tier using the following code:
dimension: age_tier { }
  1. Next, you will add the dimension type. This dimension type is tier, so you'll add that here:
dimension: age_tier { type: tier }
  1. Next, you will add the specific tiers for the dimension. In this case, you will group the tiers first by 18 and younger, then by increments of 10 years:
dimension: age_tier { type: tier tiers: [18, 25, 35, 45, 55, 65, 75, 90] }
  1. Next, define the style parameter. This parameter is specific to the tier type dimension and changes the way tiers appear in the UI. In this case, you want the style to be integer:
dimension: age_tier { type: tier tiers: [18, 25, 35, 45, 55, 65, 75, 90] style: integer }
  1. Lastly, you'll add the SQL parameter. The SQL parameter tells Looker how to write the SQL for queries users run. For this dimension, you're telling the SQL parameter to pull from the pre-existing age field:
dimension: age_tier { type: tier tiers: [18, 25, 35, 45, 55, 65, 75, 90] style: integer sql: ${age} ;; }

Your file should now resemble the following:

users.view file with dimensions for id, age, and age_tier

Now that you finished adding a new dimension, you can test to make sure it's working properly.

  1. Click Save Changes and then click the Validate LookML button on the top right of the IDE to run a LookML code validation.

  2. You can quickly go to the Explore by clicking the caret next to the file title at the top of the IDE and then selecting Explore Order Items.

The users.view dropdown menu with the Explore Order Items option highlighted.

This file menu will only show views that have an Explore defined in the LookML.

  1. Next, navigate to your new dimension under Users > Dimensions > Age Tier.

  2. Add the Age and the Age Tier dimensions and click Run. You can see that each age falls into the correct tier:

ages populated in the Users Age and Users Age Tier columns.

  1. Now remove the Age dimension and add the Count measure and hit Run again. The results are showing what you want. Looker has counted the different ages and grouped them into the appropriate tiers. Success!

Various ages listed in the Users Age Tier and Users Count columns

Create a new dimension for email source

In this section, you will create a new dimension named is_email_source based off of the traffic_source dimension. This dimension will determine whether the traffic source that brought in a given user was via email.

  1. Navigate back to the qwiklabs-ecommerce project and open users.view file.

  2. Locate the dimension for traffic_source. Your file should resemble the following:

users.view file displaying the traffic_source dimension

  1. On a new line under the dimension for traffic source, start by defining a new dimension for is_email_source using the following code:
dimension: is_email_source { }
  1. Next, add the type parameter. Since this is a boolean categorization, you will use the yesno type:
dimension: is_email_source { type: yesno }
  1. Lastly, add the SQL parameter. For this dimension, you're telling the SQL parameter to pull from the pre-existing traffic_source field where the value equals "Email".

  2. Be sure to use double quotation marks ("") when defining "Email" to ensure accurate syntax:

dimension: is_email_source { type: yesno sql: ${traffic_source} = "Email" ;; }

Your file should now resemble the following:

users.view file with the line: sql: ${traffic_source} = "Email" in the is_email_source dimension

Now that you finished adding a new dimension, you can test to make sure it's working properly.

  1. Click Save Changes and then click the Validate LookML button on the top right of the IDE to run a LookML code validation.

  2. Click the caret next to the file title at the top of the IDE and then select Explore Order Items:

Explore Order Items option highlighted in the users.view dropdown menu.

  1. Next, navigate to your new dimension under Users > Dimensions > Is Email Source (Yes / No).

  2. Add the Is Email Source dimension and the Count measure and click Run. The results are showing the amount of users that were brought in via email or not. Success!

Results display in the Users is Email Source (Yes/No) column and Users Count column

Create a new dimension for shipping days

In this section, you will create a new dimension named shipping days that calculates the number of days between the order ship date and the order created date within the order_items view.

  1. Navigate back to the qwiklabs-ecommerce project and open the order_items.view file.

  2. Locate the dimension group for shipped. Your file should resemble the following:

order_items.view file

  1. On a new line under the dimension group for shipped, define a new dimension for shipping_days using the following code:
dimension: shipping_days { }
  1. Next, add the type parameter. For this dimension, you will be using the number type:
dimension: shipping_days { type: number }
  1. Lastly, add the SQL parameter. For this dimension, you're telling the SQL parameter to run a DATE_DIFF function on the shipped_date and created_date dimensions. DAY is used here as the provided interval you want to be calculating:
dimension: shipping_days { type: number sql: DATE_DIFF(${shipped_date}, ${created_date}, DAY);; }

Your file should now resemble the following:

order_items.view file

  1. Now that you finished adding a new dimension, you can test to make sure it's working properly. Click Save Changes and then click the Validate LookML button on the top right of the IDE to run a LookML code validation.

  2. Click the caret next to the file title at the top of the IDE and then select Explore Order Items.

  3. Next, navigate to your new dimension under Order Items > Dimensions > Shipping Days.

  4. Add the Shipping Days dimension and the Order Count measure and click Run. The results are showing the count of orders with their respective shipping days. Success!

  5. Navigate back to the order_items.view file.

Commit changes and deploy to production

  1. Click Validate LookML and then click Commit Changes & Push.

  2. Add a commit message and click Commit.

  3. Lastly, click Deploy to Production.

Click Check my progress to verify the objective. Create new dimensions

Task 2. Creating measures

A measure is a field that uses a SQL aggregate function, such as COUNT, SUM, AVG, MIN, or MAX. Any field computed based on the values of other measure values is also a measure. Measures can be used to filter grouped values. For example, measures for a Sales view might include total items sold (a count), total sale price (a sum), and average sale price (an average).

The behavior and expected values for a field depend on its declared type, such as string, number, or time. For measures, types include aggregate functions, such as sum and percent_of_previous. For details, refer to dimension types and measure types.

Create a measure of the distinct number of orders

Measure fields are used to aggregate values for multiple rows. In this section, you will create a new measure named count_distinct_orders that calculates the distinct number of orders within the order_items view.

  1. Navigate back to the qwiklabs-ecommerce project and open order_items.view file.

  2. In order_items.view, locate the measure for order_item_count.

  3. On a new line under the measure for order_item_count, start by defining a new measure for count_distinct_orders using the following code:

measure: count_distinct_orders { } Note: Make sure to replace the default measure name (order_count) with count_distinct_orders.
  1. Next, add the type parameter. For this measure, you will be using the count_distinct type. The type count_distinct calculates the number of distinct values in a given field. It makes use of SQL’s COUNT DISTINCT function:
measure: count_distinct_orders { type: count_distinct }
  1. Lastly, add the SQL parameter. For this measure, you're telling the SQL parameter to pull from the pre-existing order_id field:
measure: count_distinct_orders { type: count_distinct sql: ${order_id} ;; }

Your file should now resemble the following:

order_iems.view file

Now that you finished adding a new measure, you can test to make sure it's working properly.

  1. Click Save Changes and then click the Validate LookML button on the top right of the IDE to run a LookML code validation.

  2. Click the caret next to the file title at the top of the IDE and then select Explore Order Items.

  3. Under Order Items > Measures, click Count Distinct Orders.

  4. Click Run to see the values in the new measure. You can confirm that your new measure is working properly.

Create a total sales measure

In this section, you will create a new measure named total_sales that calculates total sales using the sale_price dimension.

  1. Navigate back to the qwiklabs-ecommerce project and open order_items.view file.

  2. In order_items.view, locate the measure for order_item_count.

  3. On a new line under the measure for order_item_count, start by defining a new measure for total_sales using the following code:

measure: total_sales { }
  1. Add the type parameter. Here you will be using sum:
measure: total_sales { type: sum }
  1. Add the SQL parameter. For this measure, you're telling the SQL parameter to pull from the pre-existing sale_price field:
measure: total_sales { type: sum sql: ${sale_price} ;; }
  1. Lastly, you will add the value_format_name. The value_format_name parameter enables you to format data values using formats built into Looker or your own custom, reusable formats. Here, since you are calculating sale price you will use US dollars (usd_0):
measure: total_sales { type: sum sql: ${sale_price} ;; value_format_name: usd_0 }

Your file should now resemble the following:

order_items.view file

Now that you finished adding a new measure, you can test to make sure it's working properly.

  1. Click Save Changes and then click the Validate LookML button on the top right of the IDE to run a LookML code validation.

  2. Click the caret next to the file title at the top of the IDE and then select Explore Order Items.

  3. Under Order Items > Measures, click Total Sales.

  4. Click Run to see the values in the new measure.

Results page

  1. Navigate back to the order_items.view file.

Commit changes and deploy to production

  1. Click Validate LookML and then click Commit Changes & Push.

  2. Add a commit message and click Commit.

  3. Lastly, click Deploy to Production.

Click Check my progress to verify the objective. Create the measures

Task 3. Creating advanced measures

Advanced measures let you create additional custom metrics from dimensions that are defined externally to the current view file. You can also create special types of filtered measures by providing specific filtering conditions.

Create a filtered measure of the total sales for only the users who came to the website via the email traffic source

In this section, you will create a new advanced measure named total_sales_email_users that calculates total sales for only those users who came to the website via the email traffic source.

  1. Navigate back to the qwiklabs-ecommerce project and open order_items.view file.

  2. In order_items.view, locate the measure for order_item_count.

  3. On a new line under the measure for order_item_count, start by defining a new measure for total_sales_email_users using the following code:

measure: total_sales_email_users { }
  1. Next, add the type. For this since we are calculating total sales, we will use sum:
measure: total_sales_email_users { type: sum }
  1. Add the SQL parameter. For this measure, you're telling the SQL parameter to pull from the pre-existing sale_price field:
measure: total_sales_email_users { type: sum sql: ${sale_price} ;; }

Lastly, you will add the filters parameter. To apply a filter directly to a measure, instead of filtering the entire query, we can add a filters parameter to the LookML definition of a measure. This will apply the filter, in the form of a CASE WHEN statement, to the measure in the generated SQL, as opposed to applying a global WHERE clause to the entire query.

As such, instead of removing rows from a query after it is aggregated, a filtered measure will only aggregate those rows that meet the specified conditions. This approach allows us to examine subsets of a population vs. other subsets or the whole.

  1. Add the following filter parameter. Here you are using the is_email_source dimension you created earlier within the users.view file:
measure: total_sales_email_users { type: sum sql: ${sale_price} ;; filters: [users.is_email_source: "Yes"] } Note: You could also reference the traffic_source dimension instead, using the following code. measure: total_sales_email_users { type: sum sql: ${sale_price} ;; filters: [users.traffic_source: "Email"] }

Your file should now resemble the following:

order_items.view file

Now that you finished adding a new measure, you can test to make sure it's working properly.

  1. Click Save Changes and then click the Validate LookML button on the top right of the IDE to run a LookML code validation.

  2. Click the caret next to the file title at the top of the IDE and then select Explore Order Items.

  3. Under Order Items > Measures, click Total Sales Email Users.

  4. Click Run to see the values in the new measure.

Results page

Create a measure for the percentage of sales that are attributed to users coming from the email traffic source

In this section, you will create a new advanced measure named percentage_sales_email_source that calculates the percentage of sales that are attributed to users coming from the email traffic source.

  1. Navigate back to the qwiklabs-ecommerce project and open order_items.view file.

  2. In order_items.view, locate the measure for order_item_count.

  3. On a new line under the measure for order_item_count, start by defining a new measure for percentage_sales_email_source using the following code:

measure: percentage_sales_email_source { }
  1. Next, add the type. For this since we are calculating total sales, we will use number:
measure: percentage_sales_email_source { type: number }
  1. Next add the value_format_name parameter. Since you are calculating a percentage, you can use percent_2:
measure: percentage_sales_email_source { type: number value_format_name: percent_2 }
  1. Add the SQL parameter. For this measure, you're telling the SQL parameter to pull from the pre-existing total_sales_email_users field and dividing by the total_sales:
Note: When creating percentage measures, it is often useful to make sure you are not dividing by zero in the percentage calculation. This can be done through the NULLIF SQL function. measure: percentage_sales_email_source { type: number value_format_name: percent_2 sql: 1.0*${total_sales_email_users} / NULLIF(${total_sales}, 0) ;; }

Your file should now resemble the following:

order_items.view file

Now that you finished adding a new measure, you can test to make sure it's working properly.

  1. Click Save Changes and then click the Validate LookML button on the top right of the IDE to run a LookML code validation.

  2. Click the caret next to the file title at the top of the IDE and then select Explore Order Items.

  3. Under Order Items > Measures, click Percentage Sales Email Source.

  4. Click Run to see the values in the new measure. Success!

Results page

  1. Navigate back to the order_items.view file.

Commit changes and deploy to production

  1. Click Validate LookML and then click Commit Changes & Push.

  2. Add a commit message and click Commit.

  3. Lastly, click Deploy to Production.

Click Check my progress to verify the objective. Create the advanced measures

Congratulations!

In this lab, you learned how to create different types of dimensions and measures in LookML as a Looker developer. You also learned how to modify models of Explores, which are data views that serve as the foundation for self-service exploration by the business users in Looker, and create advanced measures with filters.

Finish your quest

This self-paced lab is part of the Understanding LookML in Looker quest and Build LookML Objects in Looker skill badge quest. A quest is a series of related labs that form a learning path. Completing a quest earns you a badge 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 any quest that contains this lab and get immediate completion credit. See the Google Cloud Skills Boost catalog to see all available quests.

Next steps / learn more

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 May 18, 2023

Lab Last Tested May 18, 2023

Copyright 2024 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.