1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| plot(c(-10, 90), c(0, 100),type="n", xlab="", ylab="", axes=F)
title("Séquence de test ADF")
text(10,97,expression(H[0]~':'~delta~'=0'))
text(40,97,expression(H[0]~':'~Phi~'=0'), col = "grey50")
text(70,97,expression(X[t]~'~I(0)'), col = "grey50")
text(40,82,expression(X[t]~'~I(1)'), col = "grey50")
text(10,67,expression(H[0]~':'~gamma~'=0'))
text(40,67,expression(H[0]~':'~Phi~'=0'), col = "grey50")
text(70,67,expression(X[t]~'~I(0)'), col = "grey50")
text(40,52,expression(X[t]~'~I(1)'), col = "grey50")
text(10,37,expression(H[0]~':'~Phi~'=0'))
text(40,37,expression(X[t]~'~I(0)'), col = "grey50")
text(10,22,expression(X[t]~'~I(1)'))
y=c(94,70)
x=c(11,11)
lines(x, y)
text(14,82,expression(H[0]))
y=c(64,40)
x=c(11,11)
lines(x, y)
text(14,52,expression(H[0]))
y=c(34,25)
x=c(11,11)
lines(x, y)
text(14,30,expression(H[0]))
y=c(97,97)
x=c(20,30)
lines(x, y, col = "grey50")
text(25,93,expression(H[1]), col = "grey50")
y=c(67,67)
x=c(20,30)
lines(x, y, col = "grey50")
text(25,63,expression(H[1]), col = "grey50")
y=c(37,37)
x=c(20,30)
lines(x, y, col = "grey50")
text(25,34,expression(H[1]), col = "grey50")
y=c(97,97)
x=c(50,60)
lines(x, y, col = "grey50")
text(55,93,expression(H[1]), col = "grey50")
y=c(67,67)
x=c(50,60)
lines(x, y, col = "grey50")
text(55,63,expression(H[1]), col = "grey50")
y=c(94,85)
x=c(40,40)
lines(x, y, col = "grey50")
text(43,90,expression(H[0]), col = "grey50")
y=c(64,55)
x=c(40,40)
lines(x, y, col = "grey50")
text(43,60,expression(H[0]), col = "grey50") |
Partager