Displaying 2 results from an estimated 2 matches for "dtfrm".
Did you mean:
dfrm
2011 Dec 12
3
obtener variables desde un dataframe
Hola amigos de R en Español,
Estoy eliguiendo unas variables desde una dataframe, pero cuando creo un objeto nuevo ( con cbind) las nueva tabla (que es una matriz) se pierden los nombres de los factores. Aparecen numeros (1,2,3..).
Alguien me puede decir si existe un comando para extraer las variables a un nuevo dataframe, pero sin cambiar el nombre, ni la codificacion ?
Gracias,
José
2010 Feb 17
3
Extending data frame with longer columns
Hi,
I am a beginner in R and have only read a few chapters in the R book,
I was not able to find a solution for this simple problem.
I have an empty data frame:
a=data.frame(name="test")
which I would like to extend in a for-loop (with data extracted from a
database). Ideally I would like to extend the data frame like this:
a["new_1"] = 1:10
a["new_1"] = 1:12