Retina support for matplotlib backend
See original GitHub issueIt would be nice if holoviews can support retina display using the %output
magic:
%output fig='retina'
When working with matplotlib
using the inline backend, retina display can be supported by %config
magic:
%config InlineBackend.figure_format='retina'
sadly, holoviews ignores this configuration.
If anyone knows how to support retina display when using holoviews with matplotlib, please give me a hint. Thank you very much!
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
what is matplotlib's retina display mode? - Stack Overflow
What is retina display mode in matplotlib? I searched a lot and only thing I get is how to use it in jupyter...
Read more >Matplotlib Retina - Linux Hint
We have created a color-mapped scatter plot in a retina display mode. The command of the Matplotlib retina option is given in the...
Read more >2x plots with matplotlib and the IPython Notebook - GitHub
This illustrates some basic steps to enabling 2x PNG matplotlib plots in the IPython notebook for use with your fancy new double-density display....
Read more >Inline Backend on Retina Displays - Ryan Wingate
On higher resolution screens such as Retina displays that come with Macbooks, the default images in notes books can look blurry. Use %config ......
Read more >How do I get Retina figures from the matplotlib backend?
Increasing the dpi does indeed increase the figure size, be it with HoloViews or Matplotlib. However plotting a Matplotlib figure in a ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@philippjfr Would it make sense to support
hv.output(dpi='retina')
which would be respected by the matplotlib backend (and the bokeh/plotly backends too if it makes sense?)Just writing notes here after look at this for a little while. The HoloViews Pane of Panel as now a
high_dpi
parameter that is set to True by default. However:_render_with_panel
class attribute of the MPLRenderer is not set to True and the only format declared as supported to render with Panel is html.hv.output(dpi=xxx)
for instance)