pylift
pylift copied to clipboard
How to change X axis labels
How to show custom labels instead of showing "Fraction of Data"
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 :)