Exercise 3: R numeric calculations
[This article was first published on R programming tutorials and exercises for data science and mathematics, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Find a function FUN
that leads to the following output:
FUN(pi) - FUN(exp(1)) ## [1] 1
Hint: aim to keep the answer simple. The main logic of the function can often be summarized in a single line of R code.
Answer: click to reveal
We can write the function as follows:
FUN <- function(x) { return(floor(x)) }
The R function floor
returns the largest integer not greater than the input argument:
pi ## [1] 3.141593 FUN(pi) ## [1] 3 exp(1) ## [1] 2.718282 FUN(exp(1)) ## [1] 2
To leave a comment for the author, please follow the link and comment on their blog: R programming tutorials and exercises for data science and mathematics.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.