Skip to content
Snippets Groups Projects
Commit 4a8faae6 authored by Maz Ameli's avatar Maz Ameli
Browse files

add screenshots for each viz type [ci skip]

parent 6e19af67
No related merge requests found
Showing with 24 additions and 3 deletions
......@@ -30,14 +30,26 @@ Each visualization type has its own advanced options you can tweak. Just click t
#### Numbers
This option is for displaying a single number, nice and big. The options for numbers include adding character prefixes or suffixes to it (so you can do things like put a currency symbol in front or a percent at the end), setting the number of decimal places you want to include, and multiplying your result by a number (like if you want to multiply a decimal by 100 to make it look like a percent).
![Funnel](images/visualizations/number.png)
#### Progress bars
Progress bars are for comparing a single number result to a goal value that you input. Open up the chart options for your progress bar to choose a goal for it, and Metabase will show you how far away your question's current result is from the goal.
![Progress bar](images/visualizations/progress.png)
#### Tables
The Table option is good for looking at tabular data (duh), or for lists of things like users. The options allow you to hide and rearrange fields in the table you're looking at.
The Table option is good for looking at tabular data (duh), or for lists of things like users. The options allow you to hide and rearrange fields in the table you're looking at. If your table is a result that contains one metric and two dimensions, Metabase will also automatically pivot your table, like in the example below (the example shows the count of orders grouped by the review rating for that order and the category of the product that was purchased; you can tell it's pivoted because the grouping field values are all in the first column and first row). You can turn this behavior off in the chart settings.
![Pivot table](images/visualizations/pivot.png)
#### Line, bar, and area charts
Line charts are best for displaying the trend of a number over time, especially when you have lots of x-axis values. Bar charts are great for displaying a metric grouped by a category (e.g., the number of users you have by country), and they can also be useful for showing a number over time if you have a smaller number of x-axis values (like orders per month this year). Area charts are useful when comparing the the proportions between two metrics over time. Both bar and area charts can be stacked.
Line charts are best for displaying the trend of a number over time, especially when you have lots of x-axis values. Bar charts are great for displaying a metric grouped by a category (e.g., the number of users you have by country), and they can also be useful for showing a number over time if you have a smaller number of x-axis values (like orders per month this year).
![Bar chart](images/visualizations/bar.png)
Area charts are useful when comparing the the proportions between two metrics over time. Both bar and area charts can be stacked.
![Stacked area chart](images/visualizations/area.png)
These three charting types have very similar options, which are broken up into the following:
......@@ -53,23 +65,32 @@ If you have a third numeric field, you can also create a bubble chart. Select th
Scatterplots and bubble charts also have similar chart options as line, bar, and area charts.
![Scatter](images/visualizations/scatter.png)
#### Pie or donut charts
A pie or donut chart can be used when breaking out a metric by a single dimension, especially when the number of possible breakouts is small, like users by gender. If you have more than a few breakouts, like users by country, it's usually better to use a bar chart so that your users can more easily compare the relative sizes of each bar.
The options for pie charts let you choose which field to use as your measurement, and which one to use for the dimension (i.e., the pie slices). You can also customize the pie chart's legend, whether or not to show each slice's percent of the whole in the legend, and the minimum size a slice needs to be in order for it to be displayed.
![Donut](images/visualizations/donut.png)
#### Funnel
Funnels are commonly used in e-commerce or sales to visualize how many customers are present within each step of a checkout flow or sales cycle. At their most general, funnels show you values broken out by steps, and the percent decrease between each successive step. To create a funnel in Metabase, you'll need to have a table with at least two columns: one column that contains the metric you're interested in, and another that contains the funnel's steps. For example, I might have an Opportunities table, and I could create a question that gives me the number of sales leads broken out by a field that contains stages such as `Prospecting`, `Qualification`, `Proposal`, `Negotiation`, and `Closed`.
![Funnel](images/VisualizeChoices.png)
![Funnel](images/visualizations/funnel.png)
#### Maps
When you select the Map visualization setting, Metabase will automatically try and pick the best kind of map to use based on the table or result set you're currently looking at. Here are the maps that Metabase uses:
* **United States Map** — Creating a map of the United States from your data requires your results to contain a column field with states. This lets you do things like visualize the count of your users broken out by state, with darker states representing more users.
* **Country Map** — To visualize your results in the format of a map of the world broken out by country, your result must contain a field with countries. (E.g., count of users by country.)
![Region map](images/visualizations/map.png)
* **Pin Map** — If your table contains a latitude and longitude field, Metabase will try to display it as a pin map of the world. This will put one pin on the map for each row in your table, based on the latitude and longitude fields. You can try this with the Sample Dataset that's included in Metabase: start a new question and select the People table, use `raw data` for your view, and choose the Map option for your visualization. you'll see a map of the world, with each dot representing the latitude and longitude coordinates of a single person from the People table.
![Pin map](images/visualizations/pin-map.png)
When you open up the Map options, you can manually switch between a region map (i.e., United States or world) and a pin map. If you're using a region map, you can also choose which field to use as the measurement, and which to use as the region (i.e. State or Country).
Metabase now also allows administrators to add custom region maps via GeoJSON files through the Metabase Admin Panel.
......
docs/users-guide/images/visualizations/area.png

56.2 KiB

docs/users-guide/images/visualizations/bar.png

33.1 KiB

docs/users-guide/images/visualizations/donut.png

93.9 KiB

docs/users-guide/images/visualizations/funnel.png

109 KiB

docs/users-guide/images/visualizations/map.png

74.9 KiB

docs/users-guide/images/visualizations/number.png

32.5 KiB

docs/users-guide/images/visualizations/pin-map.png

102 KiB

docs/users-guide/images/visualizations/pivot.png

38.7 KiB

docs/users-guide/images/visualizations/progress.png

21.7 KiB

docs/users-guide/images/visualizations/scatter.png

120 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment