Class: Rri::RConverters::StringConverter

Inherits:
Object
  • Object
show all
Defined in:
lib/rri/r_converters/string_converter.rb

Overview

Converter for ruby Strings

Convert ruby Strings to character vector in R

Instance Method Summary collapse

Instance Method Details

#convert(obj) ⇒ Array

Convert ruby object to R format

If the ruby object is a String, converts it into an R character vector

Parameters:

  • obj

    object to convert

Returns:

  • (Array)

    an array of size 2 where first element is a boolean indicating succes, and the second element is the converted object if conversion successful



18
19
20
21
22
23
24
# File 'lib/rri/r_converters/string_converter.rb', line 18

def convert(obj)
  if obj.kind_of? String
    [true, REXPString.new(obj)]
  else
    [false, nil]
  end
end