All predicatesShow sourcer_term.pl -- Translate a Prolog term into an R expression

This module deals with representing an R expression as a Prolog term. The non-terminal r_expression//2 translates the Prolog term into a string that can be sent to R.

The design is inspired by real from Nicos Angelopoulos.

Source r_expression(+Term, -Assignments)//
Grammar that creates an R command from a Prolog term. Terms recognised:

This library loads r_expand_dot.pl, which uses the `.` infix operator to make a.b and a.b() valid syntax.

Arguments:
Assignments- is a list Name=Value for data assignments.
Source r_string_codes(+Codes, +Esc)//[private]
Emit an escaped R string. @tbd Do we need to use escape characters?
Source r_infix_op(Op, Rop, Priority, Associativity)[private]
True if Op is the Prolog representation for the R operator Rop. The R gammar doesn't specify the ranking of the operators. We use Prolog's rules for now.
Source r_prefix_op(Op, Rop, Priority, Associativity)[private]
True if Op is the Prolog representation for the R operator Rop.