En este artículo, veremos cómo extraer vectores de DataFrame en lenguaje de programación R.
El enfoque es simple, al usar el operador $ , podemos convertir la columna del marco de datos en un vector.
Sintaxis:
nombre_del_marco_de_datos$nombre_de_la_columna
A continuación se presentan varios ejemplos para implementar el mismo
Ejemplo 1:
R
# create vector with names name=c("sravan","mohan","sudheer","radha","vani","mohan") # create vector with subjects subjects=c(".net","Python","java","dbms","os","dbms") # create a vector with marks marks=c(98,97,89,90,87,90) # create vector with height height=c(5.97,6.11,5.89,5.45,5.78,6.0) # create vector with weight weight=c(67,65,78,65,81,76) # pass these vectors to the data frame data=data.frame(name,subjects,marks,height,weight) # display dataframe print(data) # access vector from dataframe column name a=(data$name) print(a) # access vector from dataframe column marks b=(data$marks) print(b)
Producción:
Ejemplo 2:
R
# create vector with height height=c(5.97,6.11,5.89,5.45,5.78,6.0) # create vector with weight weight=c(67,65,78,65,81,76) # pass these vectors to the data frame data=data.frame(height,weight) # display dataframe print(data) # access vector from dataframe column # weight a=(data$weight) print(a) # access vector from dataframe column # height b=(data$height) print(b)
Producción:
Publicación traducida automáticamente
Artículo escrito por pulamolusaimohan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA