Using the following code I am able to plot x(t) and z(t) values with respect to time. But how to do a plot with x(t) values as x-axis and z(t) values as y-axis. Any suggestions please.
sol = NDSolve[{Derivative[1][x][t] == -x[t] + y[t], Derivative[1][y][t] == -x[t] - 0.01 y[t] - y[t] z[t], Derivative[1][z][t] == -0.5 z[t] + x[t]^2 - 77, x[0] == 0.1, y[0] == 0.1, z[0] == 0.1}, {x, y, z}, {t, 0, 200}, MaxSteps -> 1000000] Plot[Evaluate[{x[t], z[t]} /. sol], {t, 0, 200}, Frame -> True, Axes -> None] T1 = Table[{x[i], z[i]} /. sol, {i, 0, 200, 0.01}] Thank you

ParametricPlot$\endgroup$sol = NDSolve[{Derivative[1][x][t] == -x[t] + y[t], Derivative[1][y][t] == -x[t] - 0.01 y[t] - y[t] z[t], Derivative[1][z][t] == -0.5 z[t] + x[t]^2 - 77, x[0] == 0.1, y[0] == 1, z[0] == 0.1}, {x, y, z}, {t, 0, 200}]; ParametricPlot3D[Evaluate[{x[t], y[t], z[t]} /. sol], {t, 0, 200}, Axes -> None, BoxRatios -> 1]$\endgroup$