其他分享
首页 > 其他分享> > 小提琴图 ValueError: object arrays are not supported

小提琴图 ValueError: object arrays are not supported

作者:互联网

绘制小提琴图时,出现 ValueError: object arrays are not supported 错误。

在修改了传入的 DataFrame 数据时,将传入要进行绘制的数据进行转换为整数,即可解决此错误。

示例:
df['values'] = df['values'].astype('int64')

 

标签:supported,arrays,object,df,values,ValueError
来源: https://www.cnblogs.com/hany-postq473111315/p/15337946.html