I have created plot using Seaborn library in python
g = sns.PairGrid(df)
g = g.map_diag(plt.hist, edgecolor="w")
g = g.map_offdiag(plt.scatter, edgecolor="w")
g = g.add_legend()
actual Graph before saving as html
using following line of code i converted it into html:
mpld3.save_html(g, path)
after saving as html each graph in it is inverted upside down as shown in figure below:
Graph inverted When saved as html
how to fix it?