所以我有这个可能很简单的问题。我使用 seaborn 从 excel 文件中的数据创建了一个直方图。为了更好的可视化,我想在条/箱之间留一些空间。那可能吗?
我的代码如下所示
import pandas as pd
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns
%matplotlib inline
from IPython.display import set_matplotlib_formats
set_matplotlib_formats('svg', 'pdf')
df = pd.read_excel('test.xlsx')
sns.set_style("white")
#sns.set_style("dark")
plt.figure(figsize=(12,10))
plt.xlabel('a', fontsize=18)
plt.ylabel('test2', fontsize=18)
plt.title ('tests ^2', fontsize=22)
ax = sns.distplot(st,bins=34, kde=False, hist_kws={'range':(0,1), 'edgecolor':'black', 'alpha':1.0}, axlabel='test1')
第二个问题虽然有点离题,但我如何让图表标题中的指数真正被提升?
谢谢!