누군가는 방법 아래의 상호 작용 효과 (코드 this 도구를 사용하여 생성 된) ggplot와 음모하는 저를 보여 주시겠습니까 :회귀 분석 상호 작용 그림을 ggplot으로 변환하는 방법은 무엇입니까?
xx <- c(40,65)
yy <- c(26.77,37.15)
x <- c(40,65) # <-- x-coords for lines
y1 <- c(28.5,37.15)
y2 <- c(30.345,35.895)
y3 <- c(32.19,34.64)
plot(xx,yy,type='n',font=2,font.lab=2,xlab='x1',ylab='Y',main='2-Way Interaction Plot')
lines(x,y1,lwd=3,lty=1,col=1)
lines(x,y2,lwd=3,lty=5,col=2)
lines(x,y3,lwd=3,lty=6,col=3)
points(x,y1,col=1,pch=16)
points(x,y2,col=1,pch=16)
points(x,y3,col=1,pch=16)
legend(leg[1],leg[2],legend=c('W1(1)','W1(2)','W1(3)'),lwd=c(3,3,3),lty=c(1,5,6),col=c(1,2,3))
Y1, Y2, Y3는 사회자의 포인트/조건부 기울기 값됩니다.
Cross Validated! 하지만이 질문은 프로그래밍에 관한 것이고 Stack Overflow에서 더 좋을 것입니다. – Scortchi
[this] (http://www.cookbook-r.com/Graphs/Bar_and_line_graphs_%28ggplot2%29/#with-x-axis-treated-as-continuous)와 [this] (http : // docs .ggplot2.org/current/stat_summary.html) 예가 시작됩니다. – Henrik
구문을 확인하십시오. 그리고 'leg [1]'과 'leg [2]'는 무엇입니까? – Frank