2

I am trying to install a CHAID Package using the below code. But I am getting a warning as 'CHAID' is not available. I even installed "partykit" as an additional supporting package. can someone please help me with this?

install.packages("CHAID", repos = "http://R-Forge.R-project.org", type = "source")

Warning in install.packages : package ‘CHAID’ is not available (for R version 3.1.3)

Poonam
  • 21
  • 2

1 Answers1

2

Try to install the package "partykit" first.

Yelena
  • 189
  • 1
  • 2
  • 13