【发布时间】:2020-11-15 11:41:38
【问题描述】:
我在显示下图时遇到问题
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
sns.set_theme(style="whitegrid")
tips = sns.load_dataset("tips")
ax = sns.boxplot(x=tips["total_bill"])`enter code here`
错误是:模块“seaborn”没有属性“set_theme” 我该怎么办?
【问题讨论】:
标签: python plot seaborn jupyter boxplot