I have the following dataset in R :
month =c("January","February","March","April","May","June",
"July", "August" ,"September","October","November","December")
value = seq(1:12)
d = data.frame(month,value);d
ggplot(data = d ,aes(x = month,y=value))+geom_line()
But when I run it, R reports me an error message :
geom_path: Each group consists of only one observation. Do you need to adjust the group
aesthetic?
Why? How can I fix this?