Often a SO question includes a table like so:
"v1" "v2" "v3"
"A" "a" 1
"B" "b" 2
"C" "c" 3
# or like so
v1 v2 v3
A a 1
B b 2
C c 3
Rather than a dataframe like so:
df <- data.frame(v1 = c("A", "B", "C"),
v2 = c("a", "b", "c"),
v3 = 1:3)
Is there a way to copy and paste the table version of the data from the question and use to work on in one's own console without manually converting the table into a dataframe?