我正在使用seaborn在熊猫数据框中绘制一些数据作为简单的箱线图。我想在y轴上使用对数刻度。有什么好方法吗?
from matplotlib import style, pyplot as plt
import seaborn as sns
import pandas as pd
plt.figure()
sns.boxplot(x='Sample', y='Variants', data=plot_data)
plt.tick_params(labelbottom=True, bottom=False)
sns.despine(offset=10, trim=True, bottom=True)
我确实尝试过plt.set_yscale('log')
,但遇到了以下错误:'module' object has no attribute 'set_yscale'
plt.yscale('log')
给了我很大的情节。