I am very new to R but I am interested in learning more and improving.
I have a dataset with around 40,000+ rows containing the length of neuron segments. I want to compare the length trends of neurons of different groups. The first step in this analysis involves sorting the measurements into 1 of 6 different categories such as '<10' '10-15', '15-20', '20-25', '25-30', and '>30'. I created these categories as appended columns using 'mutate' from the 'dplyr' package and now I am trying to write a boolean function to determine where the measurement fits by applying a value of '1' to the corresponding column if it fits, and a '0' if it doesn't. Here is what I wrote:
    for (i in 1:40019)  {
      {if (FinalData$Length[i] <=10) 
        {FinalData$`<10`[i]<-1
      } else {FinalData$`<10`[i]<-0}} #Fills '<10'
      if (FinalData$Length[i] >=10 & FinalData$Length[i]<15){
        FinalData$`10-15`[i]<-1
      } else{FinalData$`10-15`[i]<-0} #Fills'10-15'
      if (FinalData$Length[i] >=15 & FinalData$Length[i]<20){
        FinalData$`15-20`[i]<-1
      } else{FinalData$`15-20`[i]<-0} #Fills '15-20'
      if (FinalData$Length[i] >=20 & FinalData$Length[i]<25) {
        FinalData$`20-25`[i]<-1
      } else{FinalData$`20-25`[i]<-0} #Fills '20-25'
      if(FinalData$Length[i] >=25 & FinalData$Length[i]<30){
        FinalData$`25-30`[i]<-1 
      } else{FinalData$`25-30`[i]<-0} #Fills '25-30'  
      if(FinalData$Length[i] >=30){
        FinalData$`>30`[i]<-1 
      } else{FinalData$`>30`[i]<-0} #Fills '>30'  
   }
This seems to work, but it takes a long time:
    system.time(source('~/Desktop/Home/Programming/R/Boolean Loop R.R'))
      user  system elapsed 
     94.408  19.147 118.203 
The way I coded this seems very clunky and inefficient. Is there a faster and more efficient way to code something like this or am I doing this appropriately for what I am asking for? Here is an example of some of the values I am testing: 'Length': 14.362, 12.482337, 8.236, 16.752, 12.045 If I am not being clear about how the dataframe is structured, here is a screenshot: How my data frame is organized
 
     
     
    