f[k_] = {{-0.001 - 2 I k, 1, -0.001, -0.501}, {0.001, -0.5 - I k, 0.001, 0.001},
{-0.001, -0.501, -0.001 + 2 I k, 1.}, {0.001, 0.001, 0.001, -0.5 + I k}};
x[k_] = Re[Eigenvalues[f[k]][[3]]];
Plot[x[k], {k, -1, 1}]
ParametricPlot[{k, x[k]}, {k, -1, 1}]
Why does Plot give a result, but ParametricPlot does not? Both functions are supposed to give the graph of the function x[k].
I don't understand why ParametricPlot returns nothing. Please help me to get the difference.

