- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 the plot of a vector that contains missing values by adding the missing values in base R?
If there are missing values in a vector then the plot of such vector will not have all the values, only the non−missing values will be shown. If we want to create the plot by adding the missing values in the plot then we need to define the X−axis for the length of the vector and the Y−axis with the actual vector using cbind but missing values will be omitted as shown in the below example.
Example
x<−c(2,5,3,NA,3,5,NA,2,7,6) plot(x,type="l")
Output
Creating the plot by adding the missing values
Example
plot(na.omit(cbind(x=seq_along(x),y=x)),type="l")
Output
- Related Articles
- Create a random sample by ignoring missing values in an R vector.
- How to find the number of unique values in a vector by excluding missing values in R?
- How to visualize a data frame that contains missing values in R?
- How to create a bar plot with bars for missing values in R?
- How to find the correlation matrix for a data frame that contains missing values in R?
- How to add two columns if both contains missing values in R?
- How to combine columns by excluding missing values in R?
- How to convert a column with missing values to binary with 0 for missing values in R?
- How to create a frequency table of a vector that contains repeated values in R?
- How to replace missing values with linear interpolation method in an R vector?
- How to find the length of columns for missing values in R?
- How to select columns in R without missing values?
- How to find the position of one or more values in a vector into another vector that contains same values in R?
- Find the missing values:
- How to impute missing values by random value for a single column in R?

Advertisements