-
Notifications
You must be signed in to change notification settings - Fork 358
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch the default plotly backend from matplotlib to plotly #2033
Conversation
This is dependent on #2028 |
7399609
to
a8f6519
Compare
9908db5
to
1ba3631
Compare
I tested this also on Databricks notebooks. |
@@ -215,7 +215,7 @@ def download_pandoc_if_needed(path): | |||
if not os.path.isfile(filename) or not os.path.isfile("pandoc"): | |||
def download_pandoc(): | |||
try: | |||
return pandoc_download.download_pandoc(targetfolder=path, version="latest") | |||
return pandoc_download.download_pandoc(targetfolder=path, version="1.19.1") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It fails to download the latest one. I just picked one stable version.
7b1131a
to
914b8d5
Compare
The 10 mins notebook has too many diff because of the interactive plots. It can be reviewed via here: http://mybinder.org/v2/gh/hyukjinkwon/koalas/plotly-default?filepath=docs%2Fsource%2Fgetting_started%2F10min.ipynb |
914b8d5
to
94f0213
Compare
Codecov Report
@@ Coverage Diff @@
## master #2033 +/- ##
==========================================
+ Coverage 94.74% 94.76% +0.01%
==========================================
Files 54 55 +1
Lines 11675 11700 +25
==========================================
+ Hits 11062 11087 +25
Misses 613 613
Continue to review full report at Codecov.
|
0764bd1
to
5b5968e
Compare
@@ -37,3 +37,6 @@ openpyxl | |||
# https://stackoverflow.com/questions/65254535/xlrd-biffh-xlrderror-excel-xlsx-file-not-supported | |||
# We can remove this upperbound when our minimum pandas version is 0.25+. | |||
xlrd<2.0.0 | |||
|
|||
# PIP only dependency | |||
sphinx-plotly-directive |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@harupy, would it be possible to release sphinx-plotly-directive on Conda?
5b5968e
to
fad373c
Compare
fad373c
to
da464a3
Compare
I will merge this and go ahead but please post-review and see if there are anything wrong. cc @xinrong-databricks and @ueshin too. I know this is a breaking change but I do think this is a better way to go. |
This PR proposes to switch the default plotly backend from matplotlib to plotly.
Resolves #1933