Q2. Below is an R function that takes a numeric vector as an
argument and returns the difference between the largest and
smallest item in the vector x.
DiffMaxMin <- function(x){
return(max(x)-min(x))
}
• Now use map functionality and the above DiffMaxMin function to
get the difference between the largest and smallest item in each
column of a numeric data frame df given below. Note that the
purpose of map functions is to avoid using loops.
df <- data.frame(
a = rnorm(10),
b = rnorm(10),
c = rnorm(10),
d = rnorm(10) )
• Perform the above task by using for-loop and without using map
or lapply functionalities.
Q2. Below is an R function that takes a numeric vector as an argument and returns the difference between the largest and
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
Q2. Below is an R function that takes a numeric vector as an argument and returns the difference between the largest and
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!