scikit-learn's SVM is based on LIBSVM. LIBSVM/SVM requires that the data should be scaled and the recommendation is that a feature value should be in one of the two ranges [0, 1] or [-1, 1]. That is, in the typical matrix, each column is a feature and the scaling is done per column.
LIBSVM FAQ suggests a simple scaling to get the features between [0, 1]:
x'=(x-min)/(Max-min)
Does scikit-learn support this "simple scaling"? Are there other recommendations for scaling the features to use with SVM and RBF kernel. Any references? I found a reference article called "A Practical Guide to Support Vector Classification" that is based on LIBSVM and they recommend scaling to [0, 1] or [-1, 1].