Time Series Plot or Line plot with Pandas

Line Plot with Multiple Variables in Pandas

In this tutorial, we will learn how to make line plot or time series plot using Pandas in Python. Pandas’ plotting capabilities are great for quick exploratory data visualisation. Time Series plot is a line plot with date on y-axis. Let us load the packages needed to make line plots using Pandas. We will use… Continue reading Time Series Plot or Line plot with Pandas

How to Combine Multiple ggplot2 Plots? Use Patchwork

Combining Multiple Plots

When you have made great data visualizations often you have to combine the plots into a single figure. Thomas Lin Pedersen from RStudio has made a fantastic R package to combine the plots. In his words, The goal of patchwork is to make it ridiculously simple to combine separate ggplots into the same graphic. As… Continue reading How to Combine Multiple ggplot2 Plots? Use Patchwork

5 tips to make better histograms with ggplot2 in R

Histogram with density line in ggplot2

Histograms are of great use to visualize a uni-variate distribution. As ggplot2 defines, histograms “Visualise the distribution of a single continuous variable by dividing the x axis into bins and counting the number of observations in each bin.” ggplot2’s geom_histogram() function displays the counts as bars and it also makes it easy to customize histograms… Continue reading 5 tips to make better histograms with ggplot2 in R

How to Add Outline/Edge Color to Histogram in Seaborn?

Histogram with edge line: Seaborn

In this tutorial, we will see an example of adding edge color/edge line to histograms made with Seaborn. Let us load the packages needed to make histogram with outlines using Seaborn. We will use Seattle weather data from vega_datasets to make histograms. Let us first make a histogram with Seaborn’s distplot. By default, distplot() fills… Continue reading How to Add Outline/Edge Color to Histogram in Seaborn?

Coloring Barplots with ggplot2 in R

Coloring Barplots by a Variable with ggplot2

In this tutorial, we will see examples of making barplots and coloring the barplots in a few simple ways. We will see how to color barplots manually by specifying a color of interest and how to color a barplot by another variable in the dataset. Let us load tidyverse suite of packages and set the… Continue reading Coloring Barplots with ggplot2 in R

Exit mobile version