summaryrefslogtreecommitdiff
path: root/lib/feature_selection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/feature_selection.rb')
-rw-r--r--lib/feature_selection.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/feature_selection.rb b/lib/feature_selection.rb
index 65f9752..c596b1f 100644
--- a/lib/feature_selection.rb
+++ b/lib/feature_selection.rb
@@ -1,13 +1,16 @@
module OpenTox
module Algorithm
+ # Feature selection algorithms
class FeatureSelection
+ # Select features correlated to the models prediction feature
+ # @param [OpenTox::Model::Lazar]
def self.correlation_filter model
relevant_features = {}
R.assign "dependent", model.dependent_variables.collect{|v| to_r(v)}
model.descriptor_weights = []
- selected_variables = []
+ selected_variables = []
selected_descriptor_ids = []
model.independent_variables.each_with_index do |v,i|
v.collect!{|n| to_r(n)}