Displaying 1 result from an estimated 1 matches for "rate1_max1".
2009 Dec 28
2
Modified R Code
... 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_min3 = rates2$min3
rate2_max3 = rates2$max3
Since I am not aware how...