- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create two line charts in the same plot in R?
We can do this by using lines function after plotting the first chart.
Example
> x <- seq(-3, 3, 0.025) > X1 <- pnorm(x) > X2 <- pnorm(x, 2, 1) > plot(x, X1, type="l",col="red", ylab="X") > lines(x, X2, col="green")
- Related Articles
- Plot two horizontal bar charts sharing the same Y-axis in Python Matplotlib
- How to create a plot with dashed regression line in base R?
- How to create a vertical line in a time series plot in base R?
- How to create a line that passes through specified points in an R plot?
- How to create a line chart in R using plot function with larger width?
- How to create vertical line for X variable at median in base R plot
- How to create horizontal line for Y variable at median in base R plot?
- How to create ACF plot in R?
- How to create correlation matrix plot in R?
- How to create a staircase plot in R?
- How to create the combination of rows in two data frames having same columns in R?
- How to plot two histograms together in R?
- How to create a plot in R with gridlines using plot function?
- How to create empty bar plot in base R?
- How to create density plot for categories in R?

Advertisements