JuliaAI / DecisionTree.jl

Julia implementation of Decision Tree (CART) and Random Forest algorithms
Other
342 stars 101 forks source link

Can offer a interface for DataFrames.jl? #228

Closed BNUhex closed 7 months ago

BNUhex commented 7 months ago

just do as padas and sklearn do,I think it's a little strange to change data to Matrix before using it.

ablaom commented 7 months ago

The MLJ Interface for DecisionTree.jl models accepts tabular input, including DataFrames. See for example here. Is that what you're after?

BNUhex commented 7 months ago

DecisionTree.jl 模型的 MLJ 接口接受表格输入,包括 DataFrame。例如,请参阅此处。这就是你所追求的吗?

Thank you,it is what I am looking for.