Full_Name: Jerry W. Lewis
Version: 2.7.0 (2008-03-23 r44847)
OS: Windows XP Professional
Submission from: (NULL) (71.184.230.48)


choose(n,k) = choose(n,n-k) is not satisfied if either

1. n is a negative integer with k a positive integer (due to automatically
returning 0 for n-k<0)

2. n is not an integer with k a positive integer (due to rounding n-k to an
integer, compounded by automatically returning 0 if n<0 which implies n-k<0)

Both are easily fixed, as discussed in PR# 10766

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to