xs = range(-π, π, length = 10)
fxs = f.(xs) # gives a vector of tuples
fxs1 = [x[1] for x in fxs] # extract each component
fxs2 = [x[2] for x in fxs]
fxs3 = [x[3] for x in fxs]
plot(xs, fxs1)
plot(xs, fxs2)
plot(xs, fxs3)
A quick comment: you shouldn’t evaluate f 3 times like you did (it can be super expensive)! Have a look at the answers to see how you can evaluate f once and store the result.