Using CHAID decision tree in R

Post date: Dec 2, 2014 10:50:09 PM

Here is the code:

The CHAID package can be found here:

https://r-forge.r-project.org/R/?group_id=343

The package cannot be found from package installer within R. Also I have a problem installing the package from the R-Forge:

install.packages("CHAID", repos="http://R-Forge.R-project.org") ## This does not work for me

So, I have to resort to installing from source and it works fine:

install.packages("/Users/kittipat/Downloads/app_install_package/CHAID_0.1-1.tar.gz", repos = NULL, type ="source")