Day: July 18, 2020

Excel formula for Beginners – How to Count cells between dates

(Excel examples for Beginners) In this end-to-end excel example, you will learn – How to Count cells between dates.   How to Count cells between dates Generic formula =COUNTIFS(range,”>=”&date1,range,”<=”&date2) Explanation To count the number of cells that contain dates between two dates, you can use the COUNTIFS function.  In the example shown, F6 contains this formula: …

Python Data Visualisation for Business Analyst – How to do BAR Plot in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do BAR Plot in Python In this data visualisation tutorial, How to do BAR Plot in Python. Bar chart is a classic way of visualizing items based on counts or any given metric. In below chart, I have used a different color …

Python Data Visualisation for Business Analyst – How to do Treemap Plot in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do Treemap Plot in Python In this data visualisation tutorial, How to do Treemap Plot in Python. Tree map is similar to a pie chart and it does a better work without misleading the contributions by each group.   Setup Run this …

Python Data Visualisation for Business Analyst – How to do Pie Plot in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do Pie Plot in Python In this data visualisation tutorial, How to do Pie Plot in Python. Pie chart is a classic way to show the composition of groups. However, its not generally advisable to use nowadays because the area of the …

Python Data Visualisation for Business Analyst – How to do Categorical Plots in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do Categorical Plots in Python In this data visualisation tutorial, How to do Categorical Plots in Python. Categorical plots provided by the seaborn library can be used to visualize the counts distribution of 2 ore more categorical variables in relation to each other.   …

Python Data Visualisation for Business Analyst – How to plot population pyramid in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to plot population pyramid in Python In this data visualisation tutorial, How to plot population pyramid in Python. Population pyramid can be used to show either the distribution of the groups ordered by the volume. Or it can also be used to show …

Python Data Visualisation for Business Analyst – How to do Violin Plot in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do Violin Plot in Python In this data visualisation tutorial, you will learn How to do Violin Plot in Python. Violin plot is a visually pleasing alternative to box plots. The shape or area of the violin depends on the number of …

Python Data Visualisation for Business Analyst – How to do Box and Dot Plot together in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do Box and Dot Plot together in Python In this data visualisation tutorial, you will learn How to do Box and Dot Plot together in Python. Dot + Box plot Conveys similar information as a boxplot split in groups. The dots, in …

Python Data Visualisation for Business Analyst – How to do Box Plot in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do Box Plot in Python In this data visualisation tutorial, you will learn How to do Box Plot in Python. Box plots are a great way to visualize the distribution, keeping the median, 25th 75th quartiles and the outliers in mind. However, …

Python Data Visualisation for Business Analyst – How to do Joy Plot in Python

(Python Data Visualisation Tutorials) Python Data Visualisation for Business Analyst – How to do Joy Plot in Python In this data visualisation tutorial, you will learn How to do Joy Plot in Python. Joy Plot allows the density curves of different groups to overlap, it is a great way to visualize the distribution of a …