class Rust::SimpleFormula

Public Class Methods

new(dependent, independent) click to toggle source
# File lib/rust-calls.rb, line 38
def initialize(dependent, independent)
    @dependent = dependent
    @independent = independent
end

Public Instance Methods

to_R() click to toggle source
# File lib/rust-calls.rb, line 43
def to_R
    return "#@dependent ~ #@independent"
end