📜  seaborn orient - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:21.854000             🧑  作者: Mango

代码示例1
>>> import seaborn as sns
>>> sns.set_theme(style="whitegrid")
>>> tips = sns.load_dataset("tips")
>>> ax = sns.boxplot(x=tips["total_bill"])