Could you help me? when I used feturestools, I use iris dataset, it has 4 features as follows: f1, f2, f3, f4, when I use ft.dfsI have 3 tow questions. 1. I found that feature_matrix has too much features. the 'divide_by_feature' and 'modulo_numeric' didn't act on original features individually. It firstly act divide_by_feature' then got 4 features newly, and then act 'modulo_numeric' on original features and new features. I hope the two primitives can act on original features individually. How should I do? 2. I use transform primitives like trans_primitives = ['subtract_numeric_scalar', 'modulo_numeric']. I found that subtract_numeric_scalar can pass an value, however, I don't know how to pass? 3. I wonder how to use all transform primitives? default, trans_primitives=None, by now, I can solve it like this: trans_primitives = ['is_null','diff',...], however, I think that it's trouble.
could you give me some advice? Thank you!