r - Trouble Installing geoR package -


i have installed r , r studio (version 3.0.1) on xubuntu 13.10. want use geor package. however, when tried install it, got error:

install.packages("geor") 

installing package ‘/home/.../r/x86_64-pc-linux-gnu-library/3.0’ (as ‘lib’ unspecified)

...

error: dependency ‘randomfields’ not available package ‘geor’ * removing ‘/home/.../r/x86_64-pc-linux-gnu-library/3.0/geor’

so tried install randomfields

install.packages("randomfields") 

...

installing package ‘/home/.../r/x86_64-pc-linux-gnu-library/3.0’ (as ‘lib’ unspecified)

warning in install.packages : package ‘randomfields’ not available (for r version 3.0.1)

can me it?

you need latest r packages xubuntu version (saucy salamander).

sudo add-apt-repository "deb..." 

they write how in installation section. need upgrade new version of r.

sudo apt-get update && sudo apt-get upgrade

it work after that.


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -