I have a data frame lets say
a b
1 10
2 13
and I have another data frame where I have 1 value "c" which is equal to 0.3 I want to create column "d" in the first data frame using the following formula
1st row will be 1*10*.3
2nd row will be 2*13*.3
please notice .3 is common.
please suggest an R function for this.