I'm currently working on some visualizations with Zeppelin and Seaborn, but the display mechanism automatically converts images to HTML and this is eating all my RAM immediately. (Too many data points).
Jupyter on the other hand handles it fairly easily, it looks like it just encodes the image content in a Base64 string.
Is it possible to mimic this behavior in Zeppelin? Or, better yet, configure it as the default image handling mechanism?
I don't know if I can override the default behavior, but this can be achieved manually with html magic. For example:
Returning the html string with base64 encoded png is much more efficient with my data, and I'll probably use this everywhere.