Skip to main content

Common types of charts used for visualization

Top 10 Charts 

  • Bar Chart
  • Bubble Chart
  • Column Chart
  • Dual Axis Chat
  • Donut Chart
  • Heat Map
  • Line Chart
  • Pie Chart
  • Waterfall Chart
  • Stack Bar Chart

Bar Chat

A bar chart is a represent of summarizing a set of category data. A bar chart displays data using multiple bars, and each bar represents a particular category.





Bubble Chart

Bubble charts are commonly used to represent relationships between two or more numerical variables. Each bubble in the chart represents a single data point.




Column Chart

A column chart displaying data with ranges represented by a rectangle and also called a vertical bar chart. They are a method of making easy comparisons between multiple items or category.



Images may be subject to copyright



Dual Axis Chart


A dual chart allows us to represent and visualize multiple data series, without the need to use additional charts, the relationship between two variables with different magnitudes and scales of measurement.






Donut Chart

Donut charts let you show the relationship of parts of several sets of data as a whole. And it shows the data of each cell as a piece of donut.





Heat Map

In a heat map, we view the data in a two-dimensional form in which the values are represented by colours. A simple heat map gives us a quick visual summary of the information.



Line Chart

A line chart is a type of chart used to visualize the value of something over time.




Pie Chart

A pie chart is a circle, which is divided into slices. Each slice represents the count or percentage of observations of a level for the variable and category.






Waterfall Chart

In a waterfall chart, it shows the current total as values are added or subtracted from the chart, and is useful for understanding how a series of positive and negative values affects the initial value.




Stack Bar Chat

A stack bar chart that uses bars to show comparisons between categories of data.





All Images may be subject to copyright © 2022-2023

 

Comments

Popular posts from this blog

Tableau Title case

 Tableau converting text case  UPPER case function lower case function Proper case function UPPER case function : The upper case function converts all letters to uppercase (capital letters) ex: Function  Name : UPPER (Name) Result: Name: AJAY KUMAR lower case function : The lower case function converts all letters to lowercase.(small letters) ex: Function Name: LOWER(Name) Result: Name: ajay kumar Proper Case The Proper case is text that is capitalized with the first letter of each word. ex: Create a calculator field for this: Name UPPER(LEFT(SPLIT([Name],' ',1),1)) + LOWER(MID(SPLIT([Name],' ',1),2,20)) + ' ' + UPPER(LEFT(SPLIT([Name],' ',2),1)) + LOWER(MID(SPLIT([Name],' ',2),2,20)) + ' ' + UPPER(LEFT(SPLIT([Name],' ',3),1)) + LOWER(MID(SPLIT([Name],' ',3),2,20)) Result: Name: Ajay Kumar

Git Hub

GitHub GitHub is a version control and code hosting platform for collaboration. Acquired by Microsoft in 2018, it allows us and others to work from anywhere on multiple projects at once. With the help of GitHub, we can access our code from anywhere and a positive example of this is that if you ever wrote any code or did any productive work and you need it in the future, then you can easily review your work. And together after writing the code once, you will be able to use your work again and again, which will save your precious time and you will also be able to do  productive work. What is Repository? A repository contains all our project files and the history of each file modification. We can discuss and manage project work created in our repository. Basic Step to Create a Repository Step 1:  Login to GitHub for more  Click me  Login or Sign Up    Successfully Login       After login successfully you will be in GitHub main page/das...

LOD function in tableau

LOD Function Level Of Detail expressions (LOD) allows us to calculate values at data source level and visualization level in tableau application tool. This gives us more control over the level of granularity we want to calculate. Types of LOD FIXED INCLUDE EXCLUDE Fixed : It compute a value using the specified dimensions, without reference to the dimensions in the view. ex: {FIXED [Region] : SUM([Sales])} Include: Calculating values using specified dimensions other than whatever dimensions are in the view ex: { INCLUDE [Customer Name] : SUM([Sales]) } Exclude: It declare dimensions to omit from the view level of detail. ex: {EXCLUDE [Order Date (Month / Year)] : AVG({FIXED [Order Date (Month / Year)] : SUM([Sales])})}