- Overview of Data Visualization
- When to Use Bar Chart, Column Chart, and Area Chart
- What is Line Chart and When to Use It
- What are Pie Chart and Donut Chart and When to Use Them
- How to Read Scatter Chart and Bubble Chart
- What is a Box Plot and How to Read It
- Understanding Japanese Candlestick Charts and OHLC Charts
- Understanding Treemap, Heatmap and Other Map Charts
- Visualization in Data Science
- Graphic Systems in R
- Accessing Built-in Datasets in R
- How to Create a Scatter Plot in R
- Create a Scatter Plot in R with Multiple Groups
- Creating a Bar Chart in R
- Creating a Line Chart in R
- Plotting Multiple Datasets on One Chart in R
- Adding Details and Features to R Plots
- Introduction to ggplot2
- Grammar of Graphics in ggplot
- Data Import and Basic Manipulation in R - German Credit Dataset
- Create ggplot Graph with German Credit Data in R
- Splitting Plots with Facets in ggplots
- ggplot2 - Chart Aesthetics and Position Adjustments in R
- Creating a Line Chart in ggplot 2 in R
- Add a Statistical Layer on Line Chart in ggplot2
- stat_summary for Statistical Summary in ggplot2 R
- Facets for ggplot2 Charts in R (Faceting Layer)
- Coordinates in ggplot2 in R
- Changing Themes (Look and Feel) in ggplot2 in R
Create a Scatter Plot in R with Multiple Groups
Let's say you have Sales Orders data for a sports equipment manufacturer and you want to plot the Revenue and Gross Margins on a scatter plot. However, you also have a ProductLine column that contains information about the product category and you want to distinguish the x,y points by the ProductLine.
We can do so using the pch
argument of the plot
function.
> plot(x, y, pch=as.integer(f))
By specifying this option, the plot will use a different plotting symbol for each point based on its group (f).
We have created a sample dataset for this lesson which contains Sales, Gross Margin, ProductLine and some more factor columns. You can download this dataset from the Lesson Resources section. As always, we will first load the dataset into an R dataframe.
> setwd("C:/r-programming/data")
> getwd()
> sales<-read.csv("Sales_Products.csv")
Before plotting the graph, it's a good idea to learn more about the data by using the summary()
and head()
functions.
We are interested in three columns from this dataset:
- Revenue: The total revenue from each order. We will plot this on x-axis.
- Gross Margin: The gross margin from each order. We will plot this on y-axis.
- ProductLine: The product category. We will group the data by ProductLine.
We can now draw the scatter plot using the following command:
plot(sales$Revenue,sales$GrossMargin,pch=as.integer(sales$ProductLine))
The result is displayed below. You can clearly see the points with different symbols according to their group.
Notice that R has converted the y-axis scale values to scientific notation. We can correct this by changing the option scipen
to a higher value. This controls which numbers are printed in scientific notation.
> options("scipen" = 10)
> options()$scipen
[1] 10
If you plot the chart again, the numbers would display correctly.
Add a Legend
Now that we have different symbols being used for different groups, we can make the graph even more convenient by adding a legend to it. We can do so by calling the legend
function after the plot function.
legend(x, y=NULL, legend, …)
x, y are the coordinates for the legend box. There are two ways to specify x: 1) Specify the position by using "topleft", "topright", etc. 2) Use an x-coordinate for the top-left corner of the legend. If you choose option 1 for specifying x, then y can be skipped. Alternatively you need to specify the y-coordinate for the top-left corner of the legend.
The third argument "legend" is a vector of the character strings to appear in the legend.
You also need to specify a fourth argument that varies depending on what you're labeling. You can create legends for points, lines, and colors. In our case, we are creating legend for points, so we will provide the forth argument pch
which is also a vector indicating that we are labeling the points by their type.
> legend("topleft", c("Camping Equipment","Golf Equipment","Mountaineering Equipment", "Outdoor Protection", "Personal Accessories"), pch=1:5)
The graph will now look as follows:
The legend function can also create legends for colors, fills, and line widths.The legend()
function takes many arguments and you can learn more about it using help by typing ?legend
.
Exercise
- Download and load the
Sales_Products
dataset in your R environment - Use the
summary()
function to explore the data - Create a scatter plot for Sales and Gross Margin and group the points by
OrderMethod
- Add a legend to the scatter plot
- Add different colors to the points based on their group. (Hint: Use the
col
argument in theplot()
function
Lesson Resources
Related Downloads
Data Science in Finance: 9-Book Bundle
Master R and Python for financial data science with our comprehensive bundle of 9 ebooks.
What's Included:
- Getting Started with R
- R Programming for Data Science
- Data Visualization with R
- Financial Time Series Analysis with R
- Quantitative Trading Strategies with R
- Derivatives with R
- Credit Risk Modelling With R
- Python for Data Science
- Machine Learning in Finance using Python
Each book includes PDFs, explanations, instructions, data files, and R code for all examples.
Get the Bundle for $39 (Regular $57)Free Guides - Getting Started with R and Python
Enter your name and email address below and we will email you the guides for R programming and Python.