SyntaxFix
Write A Post
Hire A Developer
Questions
A very simple solution:
df <- read.csv("df.csv",sep=",",head=T) x <- cbind(df$Xax,df$Xax,df$Xax,df$Xax) y <- cbind(df$A,df$B,df$C,df$D) matplot(x,y,type="p")
please note it just plots the data and it does not plot any regression line.