Inspirado en esta misma publicación, ahora uso una función práctica
reproduce(<mydata>)
cuando necesito publicar en StackOverflow.
INSTRUCCIONES RÁPIDAS
Si myData
es el nombre de su objeto para reproducir, ejecute lo siguiente en R:
install.packages("devtools")
library(devtools)
source_url("https://raw.github.com/rsaporta/pubR/gitbranch/reproduce.R")
reproduce(myData)
Detalles:
Esta función es un contenedor inteligente dput
y hace lo siguiente:
- muestrea automáticamente un gran conjunto de datos (según el tamaño y la clase. El tamaño de la muestra se puede ajustar)
- crea una
dput
salida
- le permite especificar qué columnas exportar
- se agrega al frente
objName <- ...
para que se pueda copiar y pegar fácilmente, pero ...
- Si trabaja en una Mac, la salida se copia automáticamente al portapapeles, de modo que simplemente puede ejecutarla y luego pegarla a su pregunta.
La fuente está disponible aquí:
Ejemplo:
# sample data
DF <- data.frame(id=rep(LETTERS, each=4)[1:100], replicate(100, sample(1001, 100)), Class=sample(c("Yes", "No"), 100, TRUE))
DF mide aproximadamente 100 x 102. Quiero muestrear 10 filas y algunas columnas específicas
reproduce(DF, cols=c("id", "X1", "X73", "Class")) # I could also specify the column number.
Da el siguiente resultado:
This is what the sample looks like:
id X1 X73 Class
1 A 266 960 Yes
2 A 373 315 No Notice the selection split
3 A 573 208 No (which can be turned off)
4 A 907 850 Yes
5 B 202 46 Yes
6 B 895 969 Yes <~~~ 70 % of selection is from the top rows
7 B 940 928 No
98 Y 371 171 Yes
99 Y 733 364 Yes <~~~ 30 % of selection is from the bottom rows.
100 Y 546 641 No
==X==============================================================X==
Copy+Paste this part. (If on a Mac, it is already copied!)
==X==============================================================X==
DF <- structure(list(id = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 2L, 25L, 25L, 25L), .Label = c("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y"), class = "factor"), X1 = c(266L, 373L, 573L, 907L, 202L, 895L, 940L, 371L, 733L, 546L), X73 = c(960L, 315L, 208L, 850L, 46L, 969L, 928L, 171L, 364L, 641L), Class = structure(c(2L, 1L, 1L, 2L, 2L, 2L, 1L, 2L, 2L, 1L), .Label = c("No", "Yes"), class = "factor")), .Names = c("id", "X1", "X73", "Class"), class = "data.frame", row.names = c(1L, 2L, 3L, 4L, 5L, 6L, 7L, 98L, 99L, 100L))
==X==============================================================X==
Observe también que la totalidad de la salida está en una bonita línea larga y no un párrafo alto de líneas cortadas. Esto facilita la lectura en publicaciones de preguntas SO y también es más fácil copiar y pegar.
Actualización de octubre de 2013:
Ahora puede especificar cuántas líneas de salida de texto ocuparán (es decir, qué pegará en StackOverflow). Usa el lines.out=n
argumento para esto. Ejemplo:
reproduce(DF, cols=c(1:3, 17, 23), lines.out=7)
rendimientos:
==X==============================================================X==
Copy+Paste this part. (If on a Mac, it is already copied!)
==X==============================================================X==
DF <- structure(list(id = structure(c(1L, 1L, 1L, 1L, 2L, 2L, 2L, 25L,25L, 25L), .Label
= c("A", "B", "C", "D", "E", "F", "G", "H","I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U","V", "W", "X", "Y"), class = "factor"),
X1 = c(809L, 81L, 862L,747L, 224L, 721L, 310L, 53L, 853L, 642L),
X2 = c(926L, 409L,825L, 702L, 803L, 63L, 319L, 941L, 598L, 830L),
X16 = c(447L,164L, 8L, 775L, 471L, 196L, 30L, 420L, 47L, 327L),
X22 = c(335L,164L, 503L, 407L, 662L, 139L, 111L, 721L, 340L, 178L)), .Names = c("id","X1",
"X2", "X16", "X22"), class = "data.frame", row.names = c(1L,2L, 3L, 4L, 5L, 6L, 7L, 98L, 99L, 100L))
==X==============================================================X==