来自非负数据集的图中的负值

时间:2019-01-31 22:41:55

标签: python matplotlib plot

我正在使用Joypy创建一个Joyplot。

我所有的数据都在[0,1]之间。

但是我在图中出现了很大范围的负值

enter image description here

enter image description here

import joypy
import pandas as pd
from matplotlib import pyplot as plt
from matplotlib import cm
import matplotlib.ticker as ticker
import matplotlib
matplotlib.use('TkAgg')


iris = pd.read_csv("1_5.csv")

fig, axes = joypy.joyplot(iris)


x = [0,0.25,0.5,0.75,1]

plt.xticks(x)

plt.show()

1 个答案:

答案 0 :(得分:1)

尚不清楚您的xtick是否以任何方式绑定到实际的游戏图本身(即,您创建了任意x型ticks并将其放置在图上)。

最初在图上没有显示刻度线(默认情况下,我见过的所有类似图都有)?