Search found 2 matches

by daniloap
Thu May 07, 2020 1:43 pm
Forum: General
Topic: Conditional decision trees
Replies: 4
Views: 14637

Re: Conditional decision trees

Yeees... it is very beautiful... how can I install this module on jamovi?

In R you can do something like this:

library(caret)
library(partykit)
detach("package:partykit", unload=TRUE)
library(party)

# Conditional Trees

set.seed(3456)
model <- train(
yvar ~ .,
data = df,
method = 'ctree2 ...
by daniloap
Thu May 07, 2020 12:56 am
Forum: General
Topic: Conditional decision trees
Replies: 4
Views: 14637

Conditional decision trees

One of the coolest tools in statistics and machine learning is conditional decision trees. It would be nice to see this on jamovi, using k-fold cross validation.