I am using logistic regression
with my data in weka. Now I want to try different scaling approaches to improve my results, such as min/max, zero mean/unit, variance, length etc.
Is there any option in weka for using scaling?
I am using logistic regression
with my data in weka. Now I want to try different scaling approaches to improve my results, such as min/max, zero mean/unit, variance, length etc.
Is there any option in weka for using scaling?
Weka includes methods for data preprocessing:
In Java:
In Weka Explorer, under "Filter" choose the "Standardize" filter and apply it to all attributes. Check this tutorial for more details.