<model_name>!SHOW_FEATURE_IMPORTANCE

Returns the relative feature importance for each feature used by the model. This method takes no arguments.

Syntax

<model_name>!SHOW_FEATURE_IMPORTANCE();

Output

ColumnTypeDescription
rankINTEGERThe importance rank of a feature.
featureVARCHARThe name of the feature used to train the model.
scoreFLOATThe feature’s importance score: a value in [0, 1], with 0 being the lowest possible importance, and 1 the highest.
feature_typeVARCHARThe source of the feature. Currently this is always user_provided, which denotes feature data provided by the user.