The save method needs to be documented better in the Introduction
Describe the bug The save method is poorly documented, because it is mentioned only at the end of the introduction, and not on the page of plot, that most will read first. The save method should be mentioned on the introduction about plot.
Hi @vitamins thank you very much for submitting these bug reports. We will get them fixed as soon as possible. Please let us know if you want to submit a pull request to fix any one of them. We will assign the issue to you. Thanks again!
Hi @vitamins thank you very much for submitting these bug reports. We will get them fixed as soon as possible. Please let us know if you want to submit a pull request to fix any one of them. We will assign the issue to you. Thanks again!
Thank you very much for your response and this project!
I still cant find the documentation related to how to save a plot? Its nowhere to be found.
Can we save a plot that was generated using plot?
Figured it out. For anyone struggling with this,
assign it to a variable and then save that as an html file.
from dataprep.eda import plot
my_plot = plot(df, "var1", "var2")
my_plot.save('plot.html')