Mario Morales
2005-Mar-19 10:37 UTC
[R] How I calculate nCr with R ? (Como calculo nCr con R? )
En espa?ol (In Spanish) Necesito calcular la en numeros de combinaciones de n cosas tomando k al tiempo. Como hago eso en R ??? Yo escrib? mi propia funci?n pero pienso que de esa forma no es f?cil para mis estudiantes . He estado buscando en la ayuda y no he encontrado informaci?n sobre una funci?n que calcule eso directamente. Podr?an ayudarme In English (en Ingl?s ) I need calculate the combination of n things taking k at time. How do I do that in R ? I wrote my own function but in this form isn't easy for my students. Can you help me ?
Uwe Ligges
2005-Mar-19 11:34 UTC
[R] How I calculate nCr with R ? (Como calculo nCr con R? )
Mario Morales wrote:> En espa?ol (In Spanish) > > Necesito calcular la en numeros de combinaciones de n cosas > tomando k al tiempo. > > Como hago eso en R ??? > > Yo escrib? mi propia funci?n pero pienso que de esa forma no es > f?cil para mis estudiantes . > > He estado buscando en la ayuda y no he encontrado informaci?n > sobre una funci?n que calcule eso directamente. Podr?an ayudarme > > > In English (en Ingl?s ) > > I need calculate the combination of n things taking k at time.Just the number of combinations: ?choose For listing all of them (you could have found those packages yourself, BTW), e.g: - combinations() in package "gtools" in bundle "gregmisc" - combn() in package "combinat" Uwe Ligges> > How do I do that in R ? > > I wrote my own function but in this form isn't easy for my > students. > > Can you help me ? > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! > http://www.R-project.org/posting-guide.html
Jean Eid
2005-Mar-19 11:42 UTC
[R] How I calculate nCr with R ? (Como calculo nCr con R? )
do you mean n choose k which is a built in function see ?choose On Sat, 19 Mar 2005, Mario Morales wrote:> En español (In Spanish) > > Necesito calcular la en numeros de combinaciones de n cosas > tomando k al tiempo. > > Como hago eso en R ??? > > Yo escribí mi propia función pero pienso que de esa forma no es > fácil para mis estudiantes . > > He estado buscando en la ayuda y no he encontrado información > sobre una función que calcule eso directamente. Podrían ayudarme > > > In English (en Inglés ) > > I need calculate the combination of n things taking k at time. > > > How do I do that in R ? > > I wrote my own function but in this form isn't easy for my > students. > > Can you help me ? > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html >
Joseph Beyene
2005-Mar-19 13:35 UTC
[R] How I calculate nCr with R ? (Como calculo nCr con R? )
Try choose(k,r)> choose(10,2)[1] 45 JB> -----Original Message----- > From: Mario Morales [mailto:malfonso at telecom.com.co] > Sent: March 19, 2005 5:37 AM > To: r-help at stat.math.ethz.ch > Subject: [R] How I calculate nCr with R ? (Como calculo nCr con R? ) > > En espa?ol (In Spanish) > > Necesito calcular la en numeros de combinaciones de n cosas > tomando k al tiempo. > > Como hago eso en R ??? > > Yo escrib? mi propia funci?n pero pienso que de esa forma no es > f?cil para mis estudiantes . > > He estado buscando en la ayuda y no he encontrado informaci?n > sobre una funci?n que calcule eso directamente. Podr?an ayudarme > > > In English (en Ingl?s ) > > I need calculate the combination of n things taking k at time. > > > How do I do that in R ? > > I wrote my own function but in this form isn't easy for my > students. > > Can you help me ? >
Michael Dewey
2005-Mar-19 15:15 UTC
[R] How I calculate nCr with R ? (Como calculo nCr con R? )
At 10:37 19/03/05, Mario Morales wrote:>En espa?ol (In Spanish) > >Necesito calcular la en numeros de combinaciones de n cosas >tomando k al tiempo.In English we usually read this as N choose r and with that clue you might go ?choose Incidentally your English is fine although I see the logic in giving us both.>Como hago eso en R ??? > >Yo escrib? mi propia funci?n pero pienso que de esa forma no es >f?cil para mis estudiantes . > >He estado buscando en la ayuda y no he encontrado informaci?n >sobre una funci?n que calcule eso directamente. Podr?an ayudarme > > >In English (en Ingl?s ) > >I need calculate the combination of n things taking k at time. > > >How do I do that in R ? > >I wrote my own function but in this form isn't easy for my >students. > >Can you help me ? > >Michael Dewey med at aghmed.fsnet.co.uk http://www.aghmed.fsnet.co.uk/home.html