Displaying 1 result from an estimated 1 matches for "all_y".
Did you mean:
all_
2007 Aug 30
2
How to multiply all dataframe rows by another dataframe's columns
...second column of the Y data frame.
example of what the operation need to do: X[1,2]*Y[,2] ;
X[2,2]*Y[,2].............X[4,2]*Y[,2]
I have worked on a variety of "for" loops to get this to work without
success.
The final result should look like a column like this
"all_X[,2] * all_Y[,2]"
0.1225
0.1225
0.0350
0.0700
0.0525
0.0525
0.0150
0.0300
0.0175
0.0175
0.0050
0.0100
0.0350
0.0100
0.0200
0.1225
0.1225
0.0350
0.0700
any...