Perform Operation and Append Values to Vector

Here we are going to perform some numeric operations and append values to the empty vector. We can perform cube operation and append to empty vector.

Syntax:

for(iterator in range) {
 vector = c(vector, operation(iterator))
}

where,

  • range is the range of values
  • iterator is to iterate the range of values
  • c(vector,operation(iterator) ) is an append function which will append values to the vector by performing some operation

Here we are going to append the cube values to the vector

Example:

R




# create empty vector
vector1 = c()
  
# display
print(vector1)
  
# use for loop to add elements from 
# 1 to 5 with cube values
for(i in 1: 5) {
    vector1 = c(vector1, i*i*i)
}
  
# display
vector1


Output:

NULL
[1]   1   8  27  64 125

How to Append Values to Vector Using Loop in R?

In this article, we will discuss how to append values to a vector using a loop in R Programming Language. 

Similar Reads

Appending values to an empty vector

Here we are going to append the values using for loop to the empty vector....

Perform Operation and Append Values to Vector

...

Append a Single Value to Vector

Here we are going to perform some numeric operations and append values to the empty vector. We can perform cube operation and append to empty vector....

Append Multiple Values to Existing Vector

...