I am looking for a good open source (or low cost) way to analyze CHAID. My favorite language is python, but R is fine too. OS X is a must.
I found this package for R: http://r-forge.r-project.org/projects/chaid/ , but cannot find documentation on how to use it.
Does anyone know a good documentation on how to do CHAID analysis in OS X? I would like to avoid SPSS / answer based solutions.
Thanks.
The package is documented, and the code is relatively simple. Here you can use chaid help:
chaid
library("CHAID") ### fit tree to subsample set.seed(290875) USvoteS <- USvote[sample(1:nrow(USvote), 1000),] ctrl <- chaid_control(minsplit = 200, minprob = 0.1) chaidUS <- chaid(vote3 ~ ., data = USvoteS, control = ctrl) print(chaidUS)
PS Many married and well-educated people who love BUSH AND a young single woman, such as GORE :)
You may also be interested in:
member (ctree): http://cran.r-project.org/web/packages/party/party.pdf
partykit (used to create the CHAID package on r-forge):http://www.r-project.org/conferences/useR-2009/slides/Hothorn+Zeileis.pdfhttp://cran.r-project.org/web/packages/partykit/index.html
Source: https://habr.com/ru/post/948105/More articles:Replace commas with pipes, but not commas enclosed in double quotes - perlLinux perf stat tool returns a null command counter. What am I missing here? - androidCapybara :: ElementNotFound: Unable to find css "a" - ruby-on-railsCursorAdapter for GoogleMaps - androidAllow access to the link only from a specific page? - javascriptMake WCF Service Calls on the .NET 4.0 Client Side - .net-4.0getBuyIntent returns null API version 3 in billing application - javaR: promise is already being evaluated - callstackGOGCTRACE and collection time - garbage-collectionExceptions are not thrown in Visual Studio - debuggingAll Articles