File: f_unwrap.Rd

package info (click to toggle)
r-cran-lazyeval 0.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 596 kB
  • sloc: ansic: 310; sh: 9; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/formula.R
\name{f_unwrap}
\alias{f_unwrap}
\title{Unwrap a formula}
\usage{
f_unwrap(f)
}
\arguments{
\item{f}{A formula to unwrap.}
}
\description{
This interpolates values in the formula that are defined in its environment,
replacing the environment with its parent.
}
\examples{
n <- 100
f <- ~ x + n
f_unwrap(f)
}