PublicShow 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.