En este artículo, discutiremos cómo invertir el orden de los elementos en un vector usando la función rev() en el lenguaje de programación R.
Sintaxis:
rev(nombre_vector)
Acercarse
- crear un vector
- invertir los elementos
Sintaxis para crear un vector:
c(valor1,valor2,…,valorn)
Ejemplo: Crear el vector
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 vector data=c(name,subjects,marks,height,weight) # display print(data)
Producción:
Ejemplo: invertir el orden de los elementos
R
print("reverse") print(rev(name)) print(rev(subjects)) print(rev(marks)) print(rev(height)) print(rev(weight))
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