Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

slidify package not available in R 3.1.2? [duplicate]

Tags:

r

I was trying to install Slidify package using R version 3.1.2 in Window OS.

using the command- install.packages("slidify")

it returns an error saying 'slidify' is unavailable for version 3.1.2.

Is this really not available for version 3.1.2?

If so what is the alternate package that i can use instead of 'Slidify'?

like image 513
Sravan Palaki Avatar asked Dec 12 '14 14:12

Sravan Palaki


1 Answers

Slidify is not on CRAN (yet?). You have to install it from GitHUB (as mentioned on the Slidify website):

Slidify is not on CRAN as yet and needs to be installed from github. You can use Hadley's devtools package to accomplish this easily. You will also need slidifyLibraries which contains all external libraries required by Slidify.

library(devtools)
install_github('slidify', 'ramnathv')
install_github('slidifyLibraries', 'ramnathv')
like image 166
Roman Luštrik Avatar answered Oct 23 '22 17:10

Roman Luštrik