[R] openNLP package

2011-07-16 Thread Shekhar
Hi all, Can anyone please help me in using the openNLP package for doing named- entity extraction? Regards, Som __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] How to fit a random data into Beta distribution?

2011-05-05 Thread Shekhar
into this? Thanks and Regards, Som Shekhar __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible

Re: [R] Remove all whitespaces

2011-05-05 Thread Shekhar
A more elegant way would be: myString-1 2 3 4 5 myString-paste(unlist(strsplit(myString, )),collapse=) The output will be 12345 Regards, Som Shekhar __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read

Re: [R] Using functions/loops for repetitive commands

2011-05-05 Thread Shekhar
and then you want to automate the data right? You can try using lapply, i think that would be efficient..Let me also try .. Regards, Som Shekhar __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] How to fit a random data into Beta distribution?

2011-05-04 Thread Shekhar
that approximately fits this data. I have tried the function with other distribution like Normal, Gamma, Weibull...its working fine.. Regards, Som Shekhar On May 4, 1:25 am, Steven Kennedy stevenkennedy2...@gmail.com wrote: library(MASS) fitdistr(x,beta,list(shape1=1,shape2=1)) On Tue, May 3

[R] How to fit a random data into Beta distribution?

2011-05-03 Thread Shekhar
it programmitically in R? Regards, Som Shekhar __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained

Re: [R] Using Java methods in R

2011-04-23 Thread Shekhar
) if it returns true, then i call the function by using .C or .Call function provided by R. For more information you can see http://groups.google.com/group/brumail/browse_thread/thread/a278dcbb6a8a439a . Hope it helps you in someway. Regards, Som Shekhar __ R