绘制小提琴图时,出现 ValueError: object arrays are not supported 错误。
在修改了传入的 DataFrame 数据时,将传入要进行绘制的数据进行转换为整数,即可解决此错误。 示例: df['values'] = df['values'].astype('int64')
2023-10-25 09:58:34
绘制小提琴图时,出现 ValueError: object arrays are not supported 错误。
在修改了传入的 DataFrame 数据时,将传入要进行绘制的数据进行转换为整数,即可解决此错误。 示例: df['values'] = df['values'].astype('int64')