Class: FSelector::RandomSubset

Inherits:
Base
  • Object
show all
Defined in:
lib/fselector/algo_both/RandomSubset.rb

Overview

RandS generates a random subset of the original one

Instance Method Summary collapse

Methods inherited from Base

#algo_type, #each_class, #each_feature, #each_sample, #get_class_labels, #get_classes, #get_data, #get_data_copy, #get_feature_ranks, #get_feature_scores, #get_feature_type, #get_feature_values, #get_features, #get_opt, #get_sample_size, #select_feature!, #select_feature_by_rank!, #select_feature_by_score!, #set_classes, #set_data, #set_feature_type, #set_features, #set_opt

Methods included from ReplaceMissingValues

#replace_by_fixed_value!, #replace_by_knn_value!, #replace_by_mean_value!, #replace_by_median_value!, #replace_by_most_seen_value!

Methods included from FileIO

#data_from_csv, #data_from_libsvm, #data_from_random, #data_from_url, #data_from_weka, #data_to_csv, #data_to_libsvm, #data_to_weka

Constructor Details

#initialize(nfeature = nil, data = nil) ⇒ RandomSubset

initialize from an existing data structure

Parameters:

  • nfeature (Integer) (defaults to: nil)

    number of feature required use random number if nil



21
22
23
24
25
# File 'lib/fselector/algo_both/RandomSubset.rb', line 21

def initialize(nfeature=nil, data=nil)
  super(data)
  
  @nfeature = nfeature
end