지방이의 Data Science Lab

[R] geom_line (geom_path: Each group consists of only one observation. ) 본문

Data Analysis/깨R지식

[R] geom_line (geom_path: Each group consists of only one observation. )

[지현] 2020. 1. 2. 15:42

 

geom_path: Each group consists of only one observation. Do you need to adjust the group aesthetic?

위와 같은 에러 코드가 나는이유:

엄청 간단한 그룹도 없는 가장 basic한 라인그래프인데 왜 안그려질까? 할때는 group=1이라는 값을 지정해주지 않아서 그런것이다.

 

 

library(ggplot2)

ggplot(data, aes(x=X1, y=상관계수, group=1)) + geom_line(colour='#68C8CB')+ theme_bw()+xlab("")
    

 

Comments