I have a dataset with 2 columns which consists of a boolean column and values.I will like to find the sum of the F value using while loop.Coe shown below but giving error:
 sum <- 0
FM <- 0
 idx <- 1
while ( idx <= nrow(dataset)){
if(subset(dataset,boolean=="F")){
sum <- sum + dataset [ idx,"value" ]
FM <- FM + 1
}
  idx <- idx + 1
}
 print(sum)
error message is : Error in idx : object 'idx' not found
 
    