[R] Cannot run install binary package on Windows 8

2015-04-11 Thread Maciej Węgorkiewicz
Hi all, I am just starting with R and cannot use lmtest package on Windows 8. This package contains dwtest function that I am interested in. I began with installing the core of R (with rgui) - version 3.1.3 64-bit. Then I installed lmtest package using GUI menu, but after success message I

Re: [R] Removing words and initials with tm

2015-04-11 Thread Sun Shine
Hi Jim The name's come up on my radar, but that's about it. I'll look into it. Thanks for the reference. All the best S On 10/04/15 23:36, Jim Lemon wrote: Hi Sun, No, I was thinking of something like hunspell, which seems to fit into the sort of work that you are doing. Jim On Fri,

Re: [R] multiple input files single output - lapply? - pls advise

2015-04-11 Thread B Dittmann
Hi Ista This works brilliantly and is so elegant! Yes, i googled quite a while but did not come across do.call till now. Thanks again Bernard On 10 Apr 2015 22:46, Ista Zahn istaz...@gmail.com wrote: Hi Bernard, Did you try searching for an answer? This question (minus the xts part which

[R] searchTwitter

2015-04-11 Thread Ragia Ibrahim
Dear group , I used the following code to download some tweets (1500) library(twitteR) library(ROAuth) library(plyr) library(stringr) library(ggplot2) ## Windows users need to get this file download.file(url=http://curl.haxx.se/ca/cacert.pem;, destfile=cacert.pem) requestURL

[R] searchTwitter

2015-04-11 Thread Ragia Ibrahim
Dear group I used the following code to download some tweets (1500) library(twitteR) library(ROAuth) library(plyr) library(stringr) library(ggplot2) ## Windows users need to get this file download.file(url=http://curl.haxx.se/ca/cacert.pem;, destfile=cacert.pem) requestURL

[R] Parallel processing

2015-04-11 Thread John Wasige
Dear community, Sory for cross posting. Does anybody have an idea on how I can do parallel in MATLAB? thanks for your help -- John Wasige [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more,

Re: [R] Parallel processing in Matlab (irrelevant to R)

2015-04-11 Thread Ranjan Maitra
Sorry, I think you posted to the wrong group. Ranjan On Sat, 11 Apr 2015 19:01:04 +0200 John Wasige johnwas...@gmail.com wrote: Dear community, Sory for cross posting. Does anybody have an idea on how I can do parallel in MATLAB? thanks for your help -- John Wasige

Re: [R] Parallel processing

2015-04-11 Thread Thierry Onkelinx
Wrong mailinglist. This one is about R, not matlab. Op 11-apr.-2015 19:03 schreef John Wasige johnwas...@gmail.com: Dear community, Sory for cross posting. Does anybody have an idea on how I can do parallel in MATLAB? thanks for your help -- John Wasige [[alternative HTML

Re: [R] Removing words and initials with tm

2015-04-11 Thread Bob Green
Hello Sun, The order of the TM transformations makes a lot of difference. It isn't a shortcut, but if you identify all names you could create your own Stop words list: corpus -tm_map(corpus , removeWords, c(english, )) In the case of York, Key Word in Context (KWIC) syntax could be used

Re: [R] Cannot run install binary package on Windows 8

2015-04-11 Thread Jeff Newmiller
Did you use the library function to load it into memory? You may need to practise with some simpler tasks using base R before you get too frustrated with using a contributed package. The Introduction to R document that is provided with R is worth your time.

Re: [R] Cannot run install binary package on Windows 8

2015-04-11 Thread John Kane
You need to load the library after you have installed the package. Only libraries in the base R installation load automatically. Thus every time you want to use contributed package XXX you need to issue the command library(XXX) or require(XXX) So at the top of your program try

Re: [R] Cannot run install binary package on Windows 8

2015-04-11 Thread Ben Bolker
Maciej Węgorkiewicz wegorkie at gmail.com writes: Hi all, I am just starting with R and cannot use lmtest package on Windows 8. This package contains dwtest function that I am interested in. I began with installing the core of R (with rgui) - version 3.1.3 64-bit. Then I installed