Deleting a R vector

Deletion of a Vector is the process of deleting all of the elements of the vector. This can be done by assigning it to a NULL value. 

R




# R program to delete a Vector
 
# Creating a Vector
M<- c(8, 10, 2, 5)
 
# set NULL to the vector
M<- NULL
cat('Output vector', M)


Output:

Output vector NULL

R Vectors

R Vectors are the same as the arrays in R language which are used to hold multiple data values of the same type. One major key point is that in R Programming Language the indexing of the vector will start from ‘1’ and not from ‘0’. We can create numeric vectors and character vectors as well. 

R – Vector

Similar Reads

Creating a vector

A vector is a basic data structure that represents a one-dimensional array. to create a array we use the “c” function which the most common method use in R Programming Language....

Types of R vectors

...

Length of R vector

Vectors are of different types which are used in R. Following are some of the types of vectors:...

Accessing R vector elements

...

Modifying a R vector

...

Deleting a R vector

...

Sorting elements of a R Vector

In R, the length of a vector is determined by the number of elements it contains. we can use the length() function to retrieve the length of a vector....

Contact Us