shap.summary_plot(shap_values, show=False)
# Get the current figure and axes objects.
fig, ax = plt.gcf(), plt.gca()
# Set the limits for the x-axis and similarly can be done for the y-axis also
ax.set_xlim(-60, 125)
ax.set_xlim(-60, 125)
ax.set_title(ax_title, fontdict={"size":font_size})