0

When I run "install.packages("xtable" I get this error: "package ‘xtables’ is not available (for R version 3.2.3)"

I downloaded the source but there wasn't a "config" or "setup" file not even a "readme"?

David Jackson
  • 53
  • 3
  • 9
  • You write `install.packages("xtable")`, then say that `package ‘xtables’ is not available`. Which is correct? `xtable` or `xtables`? Because package `xtable` exists. Not package `xtables`. I guess you misspelled `xtable` in `install.package`. –  Jan 12 '16 at 05:11
  • @Pascal, I tried both "xtable" and "xtables" and got the same error message..... – David Jackson Jan 12 '16 at 05:13
  • Please edit your question to **clearly** show this. –  Jan 12 '16 at 05:15

1 Answers1

0

Try

install.packages("xtable", type = "source")

RJ-
  • 2,919
  • 3
  • 28
  • 35