Displaying 1 result from an estimated 1 matches for "epsilon_h".
Did you mean:
epsilon_
2012 Nov 05
1
Plot 3 lines in one graph
...es in one graph. This is my data:
print(x)
V1 V2 V3 V41 -4800 25195.73 7415.219 7264.282
-2800 15195.73 5415.219 7264.28
I tried using matplot, but I cannot get exactly what I want. This is what I
get, and this is my code:
matplot(x[,1],x[,-1],type='b', xlab = "epsilon_h",
ylab = "Value2", xlim= range(-4500,-100),
col = c("blue","green","red"), pch=1:3)
ex12 <- expression(V(h == 40),
V(h==20),
V(h==0))
legend("topright", ex12, col = c("blue",&qu...