Horizontal boxplots are useful when you have lots of groups with longer names. If you make simple boxplots, the longer names would overlap on each other and make it impossible to read the group names. Horizontal boxplots solve that problem easily. In this post, we will see an … [Read more...] about Horizontal Boxplots with Points using Seaborn in Python
Sort Boxplot by Mean with Seaborn in Python
Sorting a boxplot by mean or median values of each group is more helpful, when you are making a boxplot with multiple groups. In this post we will see an example of starting with a boxplot that is unordered and we will use Pandas and Seaborn to sort the boxplot by mean (and … [Read more...] about Sort Boxplot by Mean with Seaborn in Python
How to Make Boxplots with Data Points using Seaborn in Python
Boxplot with data points on top of it is often better visualization technique than the boxplots alone. This is mainly because, boxplot with data points actually shows the data underlying the boxplots, while the boxplot alone just shows the summary statistics. Always remember, … [Read more...] about How to Make Boxplots with Data Points using Seaborn in Python
How To Make Simple Heatmaps with ggplot2 in R?
Heatmaps visualizes multi-dimensional data as a matrix filled with colors based on their numerical value. For example the portion of matrix with low values will have one color and the portion with high values will have another color. This can help us identify the pattern in the … [Read more...] about How To Make Simple Heatmaps with ggplot2 in R?
How To Make Boxplots with Data Points in R using ggplot2?
Boxplots with data points are a great way to visualize multiple distributions at the same time without losing any information about the data. In this tutorial, we will see examples of making Boxplots with data points using ggplot2 in R and customize the boxplots with data … [Read more...] about How To Make Boxplots with Data Points in R using ggplot2?