Skip to Content
R in a Nutshell, 2nd Edition
book

R in a Nutshell, 2nd Edition

by Joseph Adler
October 2012
Beginner to intermediate
721 pages
21h 38m
English
O'Reilly Media, Inc.
Content preview from R in a Nutshell, 2nd Edition

Return Values

In an R function, you may use the return function to specify the value returned by the function. For example:

> f <- function(x) {return(x^2 + 3)}
> f(3)
[1] 12

However, R will simply return the last evaluated expression as the result of a function. So it is common to omit the return statement:

> f <- function(x) {x^2 + 3}
> f(3)
[1] 12

In some cases, an explicit return value may lead to cleaner code.

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

R in a Nutshell

R in a Nutshell

Joseph Adler
The R Book, 2nd Edition

The R Book, 2nd Edition

Michael J. Crawley
The R Book

The R Book

Michael J. Crawley
R Packages

R Packages

Hadley Wickham

Publisher Resources

ISBN: 9781449358204Errata Page