If you want to show other users the content of a vector in your code at runtime you can drop it and paste it with copy and paste to stackoverflow with
# some crazy code, that is not important created myVector
# show myVector in a MWE
> dput(myVector)
c(5.652, 5.653, 5.654)
paste c() to your MWE and everyone has the same data:
myVector <- c(5.652, 5.653, 5.654)