Displaying 1 result from an estimated 1 matches for "ms_ind".
2001 May 03
3
Index vectors get overwriten ?!
...:
#--------------------------------------------------
MT_ind <- which(V1.frame[,2] %in% mm[,1])
print("M_ind")
str(M_ind)
Q1_ind <- which(V1.frame[,2] %in% mq1)
print("Q1_ind")
str(Q1_ind)
Q2_ind <- which(V1.frame[,2] %in% mq2)
print("Q2_ind")
str(Q2_ind)
MS_ind <- which(V1.frame[,2] %in% ms)
print("MS_ind")
str(MS_ind)
print ("---------------")
print("M_ind")
str(M_ind)
print("Q1_ind")
str(Q1_ind)
print("Q2_ind")
str(Q2_ind)
print("MS_ind")
str(MS_ind)
#---------------------------------------...