Complete the code to create a Looker dashboard with a title.
dashboard = looker.create_dashboard(title=[1])The title must be a string enclosed in quotes.
Complete the code to add a Looker tile with a query ID.
tile = dashboard.add_tile(query_id=[1])The query ID must be a string, so it needs quotes.
Fix the error in setting the visualization type for a Looker tile.
tile.set_visualization_type([1])The visualization type must be a string with quotes and lowercase with underscores.
Fill both blanks to filter a Looker query for sales greater than 1000.
query.set_filter(field=[1], value=[2])
The field name must be "sales" as a string, and the value must be 1000 without quotes.
Fill all three blanks to create a Looker visualization with a title, type, and filter.
dashboard = looker.create_dashboard(title=[1]) tile = dashboard.add_tile(query_id=[2]) tile.set_visualization_type([3])
The dashboard title is a string, the query ID must match an existing query string, and the visualization type must be a string with the correct format.