3
ggplot2 라인 플롯에 범례 추가
ggplot2의 범례에 대한 질문이 있습니다. 동일한 그래프에서 세 줄을 그릴 수 있었고 사용 된 세 가지 색상으로 범례를 추가하고 싶습니다. 이것은 사용 된 코드입니다 library(ggplot2) require(RCurl) link<-getURL("https://dl.dropbox.com/s/ds5zp9jonznpuwb/dat.txt") datos<- read.csv(textConnection(link),header=TRUE,sep=";") datos$fecha <- as.POSIXct(datos[,1], format="%d/%m/%Y") temp = ggplot(data=datos,aes(x=fecha, y=TempMax,colour="1")) + geom_line(colour="red") + opts(title="TITULO") + ylab("Temperatura (C)") + xlab(" ") + scale_y_continuous(limits = …