17👍
If you’re looking for flash-like interactivity in a web application, matplotlib probably isn’t what you’re looking for. It’s fine for rendering a static image to serve out in a web app, though. (and is amazingly flexible)
However, there’s been a lot of recent development on making matplotlib more oriented toward web interactivity. Take a look at the new HTML5/Canvas backend. http://code.google.com/p/mplh5canvas/ It’s not quite finished yet, but it’s worth playing around with, anyway.
5👍
You can use MPLD3 to export your existing matplotlib stuff to browser.
Matplotlib itself is very powerful, albeit, I agree the documentation is not very extensive.
I’ve learned it just by trying stuff out and finding examples on the net.
‘matplotlib example X’ where X is somewhat about what you are trying to plot find suprising amount of code on the net.
- How to unit test methods inside django's class based views?
- Django with NoSQL database
- Is exposing a session's CSRF-protection token safe?
- Relation does not exist error in Django
3👍
I have never used matplotlib
, but how about using Google’s Chart API http://code.google.com/intl/pl-PL/apis/chart/ for charts?
- Is there any list of blog engines, written in Django?
- Select Children of an Object With ForeignKey in Django?
- How to set timeout for urlfetch in Google App Engine?
- Django prefetch_related's Prefetch, order_by?
2👍
Resurrecting an old question with the current state of affairs. As of Fall 2013, there’s now an example of embedding matplotlib’s WebAgg backend in a Tornado-based webserver: https://github.com/matplotlib/matplotlib/blob/master/examples/user_interfaces/embedding_webagg.py
This makes use of websockets to send the figure updates to the browser, which allows for really nice interactive plots that get rendered client-side. This means that no images are being generated on the server!
- How to make Django Password Reset Email Beautiful HTML?
- Django model inheritance and type check
- UnicodeEncodeError:'latin-1' codec can't encode characters in position 0-1: ordinal not in range(256)
- Proper declaration of an empty Django PostgreSQL JSONField default value in migration file
1👍
This tool is nice, but it would awesome if it worked with matplotlib.
http://www.highcharts.com/
- How to have a link in label of a form field
- How to assign to a Django PointField model attribute?
- Is there a way to generate pdf containing non-ascii symbols with pisa from django template?
- Use a django built in filter in code (outside of a template)
- Celery workers unable to connect to redis on docker instances