I have the following table that I want to plot in R
A B C NA
0 500 200 200 0
This table is generated from a variable. I had previously removed the NAs using data<-data[!(data$pid3==""),]
If I use the plot()
function with this variable, the NA and "" shows up in the plot. How do I get rid of this in the plot?
Thank you!