SandDance
Let's try to visualize our dataset with the SandDance visualizer.
We'll cover the following...
Getting pixel perfect
For more control of your visual creation, you can try using the SandDance visualizer. Since we will gain an additional axis using SandDance, we will add the MONTH_NAME
to our query by joining to the DATE
dimension. Here’s the updated query:
Press + to interact
SELECT l.borough,d.month_name,Count(*) AS ACCIDENTSFROM edw.d_location lJOIN edw.f_collisions cON c.location_id = l.location_idJOIN edw.d_date dON d.date_key = c.date_keyWHERE l.borough IS NOT NULLGROUP BY l.borough,d.month_name
Update your query in ADS using the above SQL script, and then click Run. Your results pane will now have an additional column, as shown below. Notice the ...