Recently released Microsoft Excel 2016 version has 484 functions, out of these, 360 existed prior to Excel 2010. Here in this post, i have gathered most used advanced Excel formulas for Data Analysis in industry. Microsoft Excel since after released in 1987 and after version 5 which was released in 1993, became the widely applied spreadsheet […]
Creating Time Series with Line Charts using Python’s Matplotlib library
In this post, we will see how we can create Time Series with Line Charts using Python’s Matplotlib library. Basically, in Data Visualization, Time series charts are one of the important ways to analyse data over a time. In general, any chart that shows a trend over a time is a Time series chart and usually […]
Plotting multiple histograms with different length using Python’s Matplotlib library
In my previous posts, we have seen how we can plot stacked histogram (filled) and a stacked Step histogram (unfilled). In this post, we will see how we can plot multiple histograms with different length using Python’s Matplotlib library on the same axis. Basically, Histograms are a graphical representation of a frequency distribution of numerical data and it’s a […]
Plotting Stacked Step histogram (unfilled) using Python’s Matplotlib library
In my previous posts, we have seen how we can plot stacked histogram (filled) and a stacked bar graph. In this post, we will see how we can plot a stacked Step histogram (unfilled) using Python’s Matplotlib library. Basically, Histograms are a graphical representation of a frequency distribution of numerical data and it’s a great visualizing tool for quickly […]
Plotting stacked histogram using Python’s Matplotlib library
In my previous posts, we have seen how we can plot multiple bar graph and stacked bar graph. In this post, we will see how we can plot a stacked histogram using Python’s Matplotlib library. First of all, to create any type of histogram whether it’s a simple histogram or a stacked histogram, we need to import […]
Plotting stacked bar graph using Python’s Matplotlib library
In my previous post, we have seen how we can plot multiple bar graph on a single plot. In this post, we will see how we can plot a stacked bar graph using Python’s Matplotlib library. A stacked bar graph also known as a stacked bar chart is a graph that is used to break down and compare parts […]