Class: Remi::DataTarget::DataFrame

Inherits:
Remi::DataTarget show all
Defined in:
lib/remi/data_subject/data_frame.rb

Instance Attribute Summary

Attributes inherited from Remi::DataSubject

#fields

Instance Method Summary collapse

Methods inherited from Remi::DataTarget

#load

Methods inherited from Remi::DataSubject

#df, #df=, #enforce_types, #field_symbolizer

Constructor Details

#initialize(*args, **kargs, &block) ⇒ DataFrame

Returns a new instance of DataFrame.



34
35
36
37
# File 'lib/remi/data_subject/data_frame.rb', line 34

def initialize(*args, **kargs, &block)
  super
  init_df(*args, **kargs, &block)
end

Instance Method Details

#load!Object

Public: Performs the load operation, regardless of whether it has already executed.

Returns true if the load operation was successful



43
44
45
# File 'lib/remi/data_subject/data_frame.rb', line 43

def load!
  true
end