wayfair / pylift

Uplift modeling package.
http://pylift.readthedocs.io
BSD 2-Clause "Simplified" License
368 stars 76 forks source link

How to change X axis labels #41

Open vinodyk opened 4 years ago

vinodyk commented 4 years ago

How to show custom labels instead of showing "Fraction of Data"

rsyi commented 4 years ago

It's just using matplotlib, so you should be able to just run

import matplotlib.pyplot as plt
plt.xlabel('new xlabel')

let me know if you still have any issues :)