Replies: 1 comment 3 replies
-
I'm not certain what you're hoping to achieve here (what "known side effects" are you talking about?) but there's no way to import seaborn without importing matplotlib; seaborn is an interface to matplotlib. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
There are known sideeffects importing
matplotlib
when usingseaborn
.So I try to avoid
import matplotlib
and just doimport seaborn as sns
.Now I need to add path effects to text objects in a plot.
You see I have to
import matplotlib.patheffects
here. Can I prevent this and find a seaborn-only solution for that?Here is an example of how the path effects looking in real

Beta Was this translation helpful? Give feedback.
All reactions