Hi
I have a problem creating scatterplot. After I put my code in, the graph doesn't look like a scatterplot, which more looks like a table.
Code:
w<-read.csv(file="Satisfaction.csv",head=TRUE,sep=",")
p<-ggplot(data=w,aes(x=LE,y=WellBeing,colour=Country))
p + geom_point()
Console:
w<-read.csv(file="Satisfaction.csv",head=TRUE,sep=",")
p<-ggplot(data=w,aes(x=LE,y=WellBeing,colour=Country))
p + geom_point()
Plot Pane:
Either show like a table without lines, or nothing appear.
Please teach!
Thanks