Possible Duplicate:
How do I format my code blocks?
I see everybody on this website posting their R outputs from the R console into the question boxes into a nice neat format. How can I do the same?
Basically I want to show in a question box exactly what I see in my R studio console. Copy paste does not work because the rows link together.
dput(object)will let someone paste your object into their R console, which is very useful for sharing a test object. (See stackoverflow.com/q/5963269/903061) – shujaa Nov 19 '12 at 18:09dput, the very useful CTRL-K to format what you pasted into the Stack* page. – Carl Witthoft Nov 19 '12 at 20:01