Answers for "Seaborn boxplots shifted incorrectly along x-axis"

0

Seaborn boxplots shifted incorrectly along x-axis

# set dodge = False to shift correctly

import matplotlib.pyplot as plt
import seaborn as sns

tips = sns.load_dataset("tips")
ax = sns.boxplot(x="day", y="total_bill", hue="time",
                  dodge=False, data=tips, linewidth=2.5)

plt.show()
Posted by: Guest on November-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language