我试图让自己熟悉 R 的 nChooseK 函数,但我无法让它工作。我认为这是标准设置的一部分(即不需要额外的包)。
请帮忙。这是我尝试过的:
> nChooseK(10,2)
Error: could not find function "nChooseK"
> n<-4;k<-2
> print(nChooseK(n,k))
Error in print(nChooseK(n, k)) : could not find function "nChooseK"
最后一个是我在这里看到的一个例子:R basic nChooseK