Installation Package mgarch in R

3

I want to install the package mgarch . I downloaded it by here .

It seems like I need to install devtools as explained here .

I do all this and I can not.

How can I solve this problem?

I do the following:

install.packages("devtools")

library(devtools)

dev_mode(on=T)

install_github("mgarch")

The mgarch folder is created in: C: \ Users \ Myname \ Documents \ R \ win-library \ 3.1

Soon I'll do the following:

library("mgarch")

and says there is no such package.

    
asked by anonymous 06.02.2015 / 21:39

1 answer

1

Assuming devtools was installed correctly, you need to use the command:

library(devtools)
install_github("vst/mgarch")

and not install_github("mgarch") .

mgarch is the name of the repository in github, but every repository has one owner, in this case it is vst .

See the link: link

    
09.02.2015 / 12:07