saving . . . saved Functions has been deleted. Functions has been hidden .
Functions
Title
Question
Create a function which computes combination of two numbers

R Functions-in-R 11-12 min 0-10 sec 30-04-20, 1:05 p.m. bvs.nnsvidya@gmail.com

Answers:

combination <- function(a,b)
{
factorial(a)/(factorial(a-b)*factorial(b))
}

30-04-20, 2:24 p.m. chrl3hr5@gmail.com


Log-in to answer to this question.