I always have a little problem, providing a little minimal working example to you at stack overflow.
Is there a way to print, for example a data frame, so I can copy and paste it into the R console again and create the same kind of variable?
so basically something like this:
awesomePrint(df)
df <- data.frame(
x = c(1, 2, 3, 4),
y = c(2, 3, 4, 5)
)