swarmplot Questions
4
Solved
I am trying to plot swarm plots and box plots together using matplotlib and Seaborn. I found how to plot them together but the box plot appears underneath the swarm plot. The problem with this is t...
Smidgen asked 18/6, 2017 at 13:59
3
Solved
I know the question is not very informative.. but as I do not know the name of his type of plot, I can not be more informative..
[EDIT] I changed the title, and now it is more informative...
Elsie asked 22/3, 2016 at 11:40
3
Solved
I have a rather simple strip plot with vertical data.
planets = sns.load_dataset("planets")
sns.stripplot(x="method", y="distance", data=planets, size=4, color="....
Toronto asked 11/5, 2021 at 6:57
7
When drawing a dot plot using matplotlib, I would like to offset overlapping datapoints to keep them all visible. For example, if I have:
CategoryA: 0,0,3,0,5
CategoryB: 5,10,5,5,10
I want each ...
Fiberglass asked 29/12, 2011 at 18:30
3
Solved
I'm trying to make my swarmplot easier to read in black&white and for people that are color-blind, by having the hue affect not just the color but also another geometrical aspect of the marker....
1
I would like to make the data points on my swarmplot larger. The code I have is:
sns.swarmplot(x="Heart", y="FirstPersonPronouns", hue="Speech", data=df)
sns.set_conte...
1
Solved
I have the following data:
import pandas as pd
import numpy as np
# Generate dummy data.
a = np.random.random(75)
b = np.random.random(75) - 0.6
c = np.random.random(75) + 0.75
# Collate into a ...
Lydgate asked 14/4, 2016 at 6:30
1
Solved
In the seaborn based plot below, I am making a box plot overlaid by a swarm plot. Both are subset by hue. Is there any way I can not have them repeated twice in the legend though?
Here is my code:...
Anabatic asked 28/3, 2016 at 17:42
1
© 2022 - 2024 — McMap. All rights reserved.