dataprep icon indicating copy to clipboard operation
dataprep copied to clipboard

The save method needs to be documented better in the Introduction

Open vitamins opened this issue 5 years ago • 4 comments

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.

vitamins avatar Aug 19 '20 02:08 vitamins

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!

jnwang avatar Aug 19 '20 04:08 jnwang

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!

vitamins avatar Aug 19 '20 12:08 vitamins

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?

farazk86 avatar Aug 12 '22 00:08 farazk86

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')

farazk86 avatar Aug 16 '22 13:08 farazk86