Skip to main content
. 2020 Apr 30;20(9):2559. doi: 10.3390/s20092559
Algorithm 1: Correlation-based feature selection (CFS) working algorithm.
Input of data: S (A1, A2, A3, A4, C) // Clean dataset
δ// Benchmark threshold value
Output: Sopt Optimal Features vector
  1. Start

  2. For I = 1 to N do start

  3. Measure SUi,c for every attribute Ai;

  4. If (SUi,cδ)

  5. Then, Append Ai to list Slist;

  6. end