Direkt zum Hauptbereich

Approach by data visualisation

It is evening and already dark. I feel forced to stay at home because of the cold October weather. In order not to be bored I decided to make a post. This post will be the special one because today I'm not going to describe how to do any graphics with tableau. Today I'll share with you my approach by data visualization.

As a data analyst with 1,5 year of work experience I have to create a lot of dashboards. My challenge is to create a reasonable dashboard with unknown data. So this is my approach:

The first thing I do is ask the questions


Who is my audience? (Management, Marketing, HR etc. -with this information you can decide what kind of KPI are important)
What is relevant for my audience? (strategically, analytic or operative KPIs)
Which data I need in order to create desired dashboards?
Which data I miss?
What is my deadline?

In the second step I begin to study the data.
While my first year as a data analyst I was always overdone with data, when I opened an unknown file. In order not to drown in data float I learned to swim. I touched the "water" slowly before I submerge in this "water". I concentrate on one data set and ask again some certain question. (This question should be based on the expectations of your audience)

- Can I calculate all relevant KPIs?
- Can I compare all relevant KPIs?
etc.
If you cannot answer your questions with data then you need to obtained additional data.


Third step is one of my favorite steps: Draw you ideas


After data exploration I know that I have all data I need and I know from my audience what they expect from dashboards. So in the third step I do some visualization drafts. Be careful with different forms and colors for your graphs, as it is very important. You can find a lot of useful advises in this whitepapers.

Usually I am succeed in implementations of my drafts. But sometimes I  have to experiment with data, as some drafts appears not concise enough after visualize them with tableau. For more information I advise you this books: Einstieg in die Demonstrativeness's or Visualize this


The last step - my absolutely favorite one: data visualization
Have you ever heard about "10 sec rule"? It means that the dashboard should be understood within 10 second. In order to reach this, here are some advices: 

1. Choose a meaningful title
Watch on headline (fat and large)/subheading (less fat and less large). Also experiment with font size and font art.

2. Create a visual hierarchy
Choose light color or make the elements, which are irrelevant, weaker, in order to push them to the background. Use arrows or lines in order to focus on essentials.

3. Readability
Think about what you audience graphical or statistical cannot understand and add you graph with 
description /hints or comments. With the short description your story will be easier to understand. Graphs and visual hints increase the readability and help to interpret data easier. 
Don't forget to add some trends. You can also comment them, as comment can clarify your story. Try to answer such questions like: what does this deviation mean? What does this trend mean? etc.

4. Useful comparisons
Comparisons helps to understand data better because if you see any equivalent data you can estimate and evaluate them. Think about which data can be compared and visualize them side by side.

5. Negative spaces
Choose the distances between graph and also choose the spaces inside the graph carefully. It is important if you build some groups or if you want to represent some graphs side by side

6. Highlighting
Highlighting can guide the reader through your data and route the eye of reader toward the important information. It enhances what the reader maybe already seen or they guide the reader to the information which should be also established. On this point use you creativity, choose strong colors and discover the best color combination for you.

And last but not least: No matter how good your visualization is, the most important thing that your calculation and analysis are correct and understandable for you audience. You have to earn the trust from audience! Explore your data carefully. Note, that your audience make important decisions based on your dashboards.

If you have any questions feel free to contact me. 













“One

Kommentare

  1. The great service in this blog and the nice technology is visible in this blog. I am really very happy for the nice approach is visible in this blog and thank you very much for using the nice technology in this blog.
    Tableau Online Training

    AntwortenLöschen
  2. nice to here that, Sai. If you have any questions left, just let me know.

    AntwortenLöschen

Kommentar veröffentlichen

Beliebte Posts aus diesem Blog

Tableau Table Calculation Function: WINDOW - Functions

The functions which begin with „WINDOW_...“ are also common used in Tableau. Remember! The “WINDOW_” function stays for the offset in data set, so-called WINDOW. It can look like this: 1) You can see the “WINDOW” clearly because of separation line between rows: 2) You limit the “Window” by giving the information about the first and the last row number. In this case, you give Tableau the information about the data offset. Let's have a look at the example with WINDOW_SUM I created a sample with data from Superstore. I would like to have a total sum of Sales in every row. In order to do this I created a calculation field: WINDOW_SUM(SUM([Sales]), FIRST(), LAST()) With this formula I said to Tableau: “Hey Tableau, calculate the total sum of sales from the first till the last row in the data set” And this is the result: Tableau wrote the result (total sum of Sales) in every row. As another option you can cumulate the result in each row and...

I want to understand RegEx! (Part2)

It is already two weeks ago since my last blog post. This two weeks I spent in Scotland. It is a very beautiful country with unforgettable landscaps. However, it is not the topic I want to talk about. In this blog I will continue the topic about the RegEx and its using in Tableau. Tableau offers you four different uses cases of RegEx: REGEXP_EXTRACT If you have data like this: aspirin_20_mg_oral_tablet and you would like to extract onliy 20_mg. What I do is I check my RegEx on this web site: http://regexr.com/ If it is ok, put this RegEx in Tableau function: REGEXP_EXTRACT([0-9][0-9]+[_]+[a-z]+) and extract all "20_mg" REGEXP_EXTRACT_NTH The same like the function before but here you can limit your extract to Nth index. Image you have data like this: aspirin_20565435 and you want to extract only "aspirin_20". So your formula should be: REGEXP_EXTRACT_NTH([a-z]+[0-9], 2) REGEXP_MATCH It is very easy one: Using REGEXP_MATCH we can find if ...

Tableau's Attribute Function ATTR()

There are a lot of blog posts about this function. However, for me the best one was written by Tim Costello. You can find the post here. ATTR comes from Attribute. An attribute is a specification that defines a property of an object, element, or file. It may also refer to or set the specific value for a given instance of such. If you take a look for Tableau Online Help , then you can find this definition: Tableau computes Attribute using the following formula: IF MIN([dimension]) = MAX([dimension]) THEN MIN([dimension]) ELSE “*” END I would say this is the main logic of ATTR function. With this formula you can understand how the ATTR function works. In simple words ATTR returns a value if it is unique, else it returns * Check out this links for mor examples: Drawing with numbers Powerful &Misunderstood: Tableau's ATTR Function Using ATTR Function It would be gerate if you share your examples of using of ATTR's function. Thank you!