We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Pandas will use matplotlib if it's available, but matplotlib isn't a dependency if Pandas.
matplotlib
We're deploying batch-processing applications for use in data pipelines, which will never try to plot anything and don't need matplotlib.
We are required to scan our deployments with Veracode, and Veracode raises many issues with matplotlib and matplotlib's dependencies.
We can work around this by replacing databricks.koalas.plot.KoalasPlotAccessor with a unittest.mock.MagicMock, but that's evil. :)
databricks.koalas.plot.KoalasPlotAccessor
unittest.mock.MagicMock
Koalas shouldn't require matplotlib.
The text was updated successfully, but these errors were encountered:
Yeah, I think we can keep it as an optional dependency
Sorry, something went wrong.
Fixed in #2029
Thanks!
I don't want to seem ungrateful, but when might this be released? :)
:-). likely next week or a week after the next week. Just realised that https://koalas.readthedocs.io/en/latest/development/contributing.html#release-guide is outdated. Let me update it soon. thanks for the head up
Successfully merging a pull request may close this issue.
Pandas will use
matplotlib
if it's available, butmatplotlib
isn't a dependency if Pandas.We're deploying batch-processing applications for use in data pipelines, which will never try to plot anything and don't need
matplotlib
.We are required to scan our deployments with Veracode, and Veracode raises many issues with
matplotlib
andmatplotlib
's dependencies.We can work around this by replacing
databricks.koalas.plot.KoalasPlotAccessor
with aunittest.mock.MagicMock
, but that's evil. :)Koalas shouldn't require
matplotlib
.The text was updated successfully, but these errors were encountered: