在RainCloudplot中限制未使用的区域-Python

时间:2019-01-29 18:34:54

标签: python seaborn

我正在使用PtitPrince和Seaborn在Python上绘制RainClouds,并且我的数据(时间序列中无法发生事件)中存在“间隙”,我想对此加以抑制。

我的身材如下:

figure

但是我希望它没有蓝色方块,因为在这些时间段内不会发生任何事件:

我的脚本:

dx = "ThreatType"; dy = "InTrialHitTime"; dhue = "Collection_Group"; ort = "h"; pal = "husl"; sigma = .1
ax=pt.RainCloud(x = dx, y = dy, data = df, palette = pal, bw = sigma,
                 width_viol = .7, figsize = (12,7), orient = ort, alpha= .40, dodge = True, pointplot = True)
ax.set_yticklabels(['High Shock', 'Low Shock'])
ax.set_xlabel('Devil hit time')

0 个答案:

没有答案