September 2018
Beginner to intermediate
140 pages
2h 52m
English
In this section, we'll create a two-dimensional bar chart for the total sales of a company in different months.
Let's begin by following these steps:
ggplot(RetailSales,aes(x=Month,y=Sales)) + geom_bar(stat="identity")
A screenshot of the expected outcome is as follows:
Read now
Unlock full access