rExtractFormula function

String rExtractFormula(
  1. String log
)

Extract from the R log the formula.

Implementation

String rExtractFormula(String log) {
  String extract = rExtract(log, '> print(form)');

  return extract;
}