Displaying 1 result from an estimated 1 matches for "data_label".
Did you mean:
  data_lab
  
2009 Dec 28
2
Modified R Code
...= 2.65
rate2_max3 = 2.99
 
If there are say 10 rates, then this will continue till
 
rate10_min1 =  ......
rate10_max1 = ......
.........
so on.
 
## ________________________________________________________
 
# PROBLEM - B
 
# Suppose Rij = ith Rate and jth range. (There are 3 ranges i.e. j= 3).
 
data_label = expand.grid(c("R11", "R12", "R13"), c("R21", "R23", "R23"))
 
# gives the output like
 
  data_label
     Var1        Var2
1    R11         R21
2    R12         R21
3    R13         R21
4    R11         R22
5    R12         R22
6    R13 ...