ggplot2 – Time Series
A time series is a graphical plot which represents the series of data points in a specific time order. A time series is a sequence taken with a sequence at…
A time series is a graphical plot which represents the series of data points in a specific time order. A time series is a sequence taken with a sequence at…
There are ways to change the entire look of your plot with one function as mentioned below. But if you want to simply change the background color of the panel…
In this chapter, we will focus on creation of multiple plots which can be further used to create 3 dimensional plots. The list of plots which will be covered includes…
Multi panel plots mean plot creation of multiple graphs together in a single plot. We will use par() function to put multiple graphs in a single plot by passing graphical…
In this chapter, we will focus on using customized theme which is used for changing the look and feel of workspace. We will use “ggthemes” package to understand the concept…
In the previous chapters, we had a look on various types of charts which can be created using “ggplot2” package. We will now focus on the variation of same like…
Bubble plots are nothing but bubble charts which is basically a scatter plot with a third numeric variable used for circle size. In this chapter, we will focus on creation…
In this chapter, we shall discuss about Marginal Plots. Understanding Marginal Plots Marginal plots are used to assess relationship between two variables and examine their distributions. When we speak about…
A pie chart is considered as a circular statistical graph, which is divided into slices to illustrate numerical proportion. In the mentioned pie chart, the arc length of each slice…
Bar plots represent the categorical data in rectangular manner. The bars can be plotted vertically and horizontally. The heights or lengths are proportional to the values represented in graphs. The…