search for: rates2

Displaying 1 result from an estimated 1 matches for "rates2".

Did you mean: rates
2009 Dec 28
2
Modified R Code
...1.99   rate2.csv min1        max1            min2          max2          min3           max3 2.05        2.30               2.30          2.65             2.65          2.99      The simple R code I had used to read these files was as given below -   # OLD CODE   rates1 = read.csv('rate1.csv) rates2 = read.csv('rate2.csv')   rate1_min1  = rates1$min1 rate1_max1 = rates1$max1 rate1_min2  = rates1$min2 rate1_max2 = rates1$max2 rate1_min3  = rates1$min3 rate1_max3 = rates1$max3   rate2_min1  = rates2$min1 rate2_max1 = rates2$max1 rate2_min2  = rates2$min2 rate2_max2 = rates2$max2 rate2_mi...