RF docs: Fix function call in examples
diff --git a/src/ports/postgres/modules/recursive_partitioning/random_forest.sql_in b/src/ports/postgres/modules/recursive_partitioning/random_forest.sql_in index dcaa009..22f1ddf 100644 --- a/src/ports/postgres/modules/recursive_partitioning/random_forest.sql_in +++ b/src/ports/postgres/modules/recursive_partitioning/random_forest.sql_in
@@ -486,7 +486,7 @@ 'train_output', -- output model table 'id', -- id column 'class', -- response - '"OUTLOOK", temperature, humidity, windy', -- features + '"OUTLOOK", temperature, humidity, windy', -- features NULL, -- exclude columns NULL, -- grouping columns 20::integer, -- number of trees @@ -496,8 +496,7 @@ 8::integer, -- max depth 3::integer, -- min split 1::integer, -- min bucket - 10::integer, -- number of splits per continuous variable - FALSE -- verbose + 10::integer -- number of splits per continuous variable ); \\x on SELECT * FROM train_output_summary;