The R Project SVN R

Rev

Rev 73699 | Rev 77891 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 73699 Rev 74161
Line 1... Line 1...
1
% File src/library/base/man/deparse.Rd
1
% File src/library/base/man/deparse.Rd
2
% Part of the R package, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2017 R Core Team
3
% Copyright 1995-2018 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{deparse}
6
\name{deparse}
7
\alias{deparse}
7
\alias{deparse}
8
\title{Expression Deparsing}
8
\title{Expression Deparsing}
Line 90... Line 90...
90
e <- quote(`foo bar`)
90
e <- quote(`foo bar`)
91
deparse(e)
91
deparse(e)
92
deparse(e, backtick = TRUE)
92
deparse(e, backtick = TRUE)
93
e <- quote(`foo bar`+1)
93
e <- quote(`foo bar`+1)
94
deparse(e)
94
deparse(e)
95
deparse(e, control = "all")
95
deparse(e, control = "all") # wraps it w/ quote( . )
96
}
96
}
97
\keyword{programming}
97
\keyword{programming}
98
\keyword{manip}
98
\keyword{manip}
99
\keyword{data}
99
\keyword{data}