cluster_multi_inspirals(mi_table,
        dt,
        loudest_by="snr")
  
   | source code 
     | 
    
  
  
Cluster a MultiInspiralTable with a given ranking statistic and
clustering window.
This method separates the table rows into time bins, returning those
row that are
    * loudest in their own bin, and
    * louder than those events in the preceeding and following bins
      that are within the clustering time window
@return: a new MultiInspiralTable containing those clustered events
@param mi_table:
    MultiInspiralTable to cluster
@param dt:
    width (seconds) of clustering window
@keyword loudest_by:
    column by which to rank events, default: 'snr'
@type mi_table: glue.ligolw.lsctables.MultiInspiralTable
@type dt: float
@type loudest_by: string
@rtype: glue.ligolw.lsctables.MultiInspiralTable
  
   
 |