[R] [R-pkgs] New version of wikipediatrend

2015-06-08 Thread Peter Meissner
Dear UseRs, wikipediatrend - a package to retrieve Wikipedia page access statistics - has jumped from version 0.2 to 1.1.3 and now is more streamlined, feature richer, more tested and comes with a vignette as well as a lot of fun. packge information: http://cran.rstudio.com/web/packages/

Re: [R] NppToR / RMySQL / loadNamespace() Error

2014-05-21 Thread Peter Meissner
ed RMySQL. On 20 May 2014, at 15:08, Peter Meissner wrote: Dear Listeners, I finally managed to install RMySQL on my Win7(64Bit) machine with R.3.1.0. Now, as long as I start R manually and load the package everything is working just fine: the package loads and I can connect to a database an

[R] NppToR / RMySQL / loadNamespace() Error

2014-05-20 Thread Peter Meissner
Dear Listeners, I finally managed to install RMySQL on my Win7(64Bit) machine with R.3.1.0. Now, as long as I start R manually and load the package everything is working just fine: the package loads and I can connect to a database and query it. But, when NppToR does start the R session for me s

Re: [R] Optmatch Package Question

2012-12-20 Thread Peter Meissner
Hey, it seems like it is indeed: library(sos) findFn(pscore.dist) Best, Peter source: http://stackoverflow.com/a/10553795/1144966 Am 21.12.2012 00:08, schrieb MA: Hello , My optmatch package is loaded on R and otherwise running fine. I get an error after lcds successfully completes a logi

[R] Memory filling up while looping

2012-12-20 Thread Peter Meissner
Hey, I have an double loop like this: chunk <- list(1:10, 11:20, 21:30) for(k in 1:length(chunk)){ print(chunk[k]) DummyCatcher <- NULL for(i in chunk[k]){ print("i load something") dummy <- 1 print("i do something")