How to edit size of axes text size on SHAP depedence plot in Python
Advertisements I have used this code: for i in range(len(col_list)): shap.dependence_plot(i, shap_values, X.values, feature_names=X.columns, dot_size=10, interaction_index=None, x_jitter=-0.5) to generate the following SHAP dependence plot: Does anyone know how to modify the size of the text in the x-axis so that it becomes smaller? For example, 150000 doesn’t overlap with 175000… >Solution : I’m not familiar… Read More How to edit size of axes text size on SHAP depedence plot in Python