0 votes
in R Language by
Write function in R language

1 Answer

0 votes
by

In some occasion, we need to write our own function because we have to accomplish a particular task and no ready made function exists. A user-defined function involves a namearguments and a body.

function.name <- function(arguments) 
{
    computations on the arguments	
    some other code
}		

Note: A good practice is to name a user-defined function different from a built-in function. It avoids confusion.

Related questions

+3 votes
asked Jul 28, 2019 in R Language by Aarav2017
+2 votes
asked Jul 28, 2019 in R Language by Aarav2017
...