You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like there are more and more people running into threading issues.
Add a generic FAQ entry for them, and edit the ISSUE_TEMPLATE to perhaps
decrease the number of such reports.
`Violin plots <http://matplotlib.org/examples/statistics/violinplot_demo.html>`_ are closely related to box plots but add useful information such as the distribution of the sample data (density trace).
541
541
Violin plots were added in Matplotlib 1.4.
542
542
543
+
.. _how-to-threads:
544
+
545
+
Working with threads
546
+
--------------------
547
+
548
+
Matplotlib is not thread-safe: in fact, there are known race conditions
549
+
that affect certain artists. Hence, if you work with threads, it is your
550
+
responsibility to set up the proper locks to serialize access to Matplotlib
551
+
artists.
552
+
553
+
Note that (for the case where you are working with an interactive backend) most
554
+
GUI backends *require* being run from the main thread as well.
0 commit comments