stripplot Questions
3
Solved
I would like to know how I could get multiple markers in the same strip plot.
tips = sns.load_dataset("tips")
coldict={'Sun':'red','Thur':'blue','Sat':'yellow','Fri':'green'}
markdict={'Sun':'x',...
3
Solved
One of the coolest things you can easily make in seaborn is boxplot + stripplot combination:
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
tips = sns.load_dataset("...
Shiite asked 21/2, 2016 at 16:48
1
© 2022 - 2024 — McMap. All rights reserved.