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
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)
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.
--
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
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
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
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
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:/
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
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
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
11 matches
Mail list logo