I am trying to find the difference between many pairs of numbers.
These numbers are in two vectors of unequal length. For instance,
a<- c(1:5)
b<- c(1:10)
Now I need some way to calculate a [[1]] - b, and then a [[2]] - b, etc. until [[5]] - b. Each of these calculations should lead to a vector 10 characters long.
Each of these difference vectors must be stored together as columns in a data frame. The first column should be the subtracted position “b”, and the subsequent columns should have the name “a” (therefore, there are 5 columns and 10 rows).
a[1] a[2] ... a[5]
b[1]
b[2]
...
b[10]
R. *. , , , . !
P.S. , . , .