Last data update: 2014.03.03

R: Create a formula object by "hand".
f_newR Documentation

Create a formula object by "hand".

Description

Create a formula object by "hand".

Usage

f_new(rhs, lhs = NULL, env = parent.frame())

Arguments

lhs, rhs

A call, name, or atomic vector.

env

An environment

Value

A formula object

Examples

f_new(quote(a))
f_new(quote(a), quote(b))

Results