I am trying to train a decision tree model using h2o. I am aware that no specific library for decision trees exist in h2o. But, h2o has an implemtation of random forest H2ORandomForestEstimator . Can we implement a decision tree in h2o by tuning certain input arguments of random forests ? Because we can do that in scikit module (a popular python library for machine learning)
Ref link : Why is Random Forest with a single tree much better than a Decision Tree classifier?
In scikit the code looks something like this
RandomForestClassifier(n_estimators=1, max_features=None, bootstrap=False)
Do we have a equivalant of this code in h2o ?