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

2015-04-11 Thread Ben Bolker
Maciej Węgorkiewicz 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 lm

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 library(lmtest)

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. --

[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 can

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 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 > > [[alternative H

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" : > 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 delet

[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, s

[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 <"https:/

[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 <"https://api.twit

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

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" wrote: > Hi Bernard, > > Did you try searching for an answer? This question (minus the xts part > which I don't thin