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)
share|improve this question
7  
Hm, I think the better place for this would be the R tag wiki. – Yannis Nov 25 '12 at 16:13

closed as off topic by Bart, jonsca, Aaron Bertrand, Bo Persson, Jim Nov 25 '12 at 18:11

Questions on Meta Stack Overflow are expected to generally relate to the Stack Exchange family of websites and/or community in some way, within the scope defined in the faq.

You must log in to answer this question.

Browse other questions tagged