Skip to main content
. 2021 Feb 11;11(2):285. doi: 10.3390/diagnostics11020285
Algorithm 2 Pseudoalgorithm of the feature selection
Input: Clinical data
1. All features were normalized as described in the Pre-processing Section
2. For each feature j,
Set Vj=0
End for each
3. For each FS technique i
For each feature j
If feature j is in FSSi,
Vj=Vj+1
End if
                   End for each
End for each
4. Rank features to descending order with respect to Vj. In case of equality the ranking is shaped from the feature importance of the best performing FS technique.
End