search for: zhongwen

Displaying 4 results from an estimated 4 matches for "zhongwen".

Did you mean: zhangwen
2001 Nov 09
3
A chinese R-info page and a question
...ne else helped me type a 5-page R-info in Chinese, covering the most basic information on how to get and install and start using R on Wintel PC. This could serve those not fluent in/intimidated by English but want to start using R. (I met a lot of those in China) <http://www.ms.uky.edu/~mai/ZhongWen.htm> also a MSword version of the same (may print better). <http://www.ms.uky.edu/~mai/ZhongWen.doc> Now I have a question: I am packaging several functions doing empirical likelihood ratio as an R package. Using R CMD check emplik, There is warning about undocumented functions. Th...
2003 Feb 11
0
Parallel Processing Interface for lapply()
In co-operation with Markus Hegland and myself, Zhongwen Ding has written a package, based partly on Markus Hegland's code, that provides a parallel processing interface to a remote multi-processsor system. Pyro (Python Remote Objects) and R must both be installed, both on the client machine and on the remote server. The system uses rsync, with an...
2008 Jun 06
1
functions for high dimensional integral
I need to compute a high dimensional integral. Currently I'm using the function adapt in R package adapt. But this method is kind of slow to me. I'm wondering if there are other solutions. Thanks. Zhongwen -- View this message in context: http://www.nabble.com/functions-for-high-dimensional-integral-tp17702978p17702978.html Sent from the R help mailing list archive at Nabble.com.
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.