成功解决TypeError: ufunc 'sqrt' not supported for the input types, and the inputs could not be safely co

   日期:2020-05-15     浏览:1324    评论:0    
核心提示:成功解决TypeError: ufunc sqrt not supported for the input types, and the inputs could not be safely co目录解决问题解决思路解决方法解决问题TypeError: ufunc sqrt not supported for the input types, and the inputs could not be safely coerced to any sup...python

成功解决TypeError: ufunc 'sqrt' not supported for the input types, and the inputs could not be safely co

 

 

目录

解决问题

解决思路

解决方法

 

 

解决问题

TypeError: ufunc 'sqrt' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
 

 

解决思路

类型错误:ufunc 'sqrt'不支持输入类型,并且不能根据类型转换规则“safe”安全地强制输入任何受支持的类型。

 

 

 

解决方法

根据scatter函数用法,可知,绘图属性,需要在前边加上标志符号!

def scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None,
            vmax=None, alpha=None, linewidths=None, verts=None, edgecolors=None,
            hold=None, data=None, **kwargs):
    ax = gca()
    # Deprecated: allow callers to override the hold state
    # by passing hold=True|False
    washold = ax._hold

    if hold is not None:
        ax._hold = hold
        from matplotlib.cbook import mplDeprecation
        warnings.warn("The 'hold' keyword argument is deprecated since 2.0.",
                      mplDeprecation)
    try:
        ret = ax.scatter(x, y, s=s, c=c, marker=marker, cmap=cmap, norm=norm,
                         vmin=vmin, vmax=vmax, alpha=alpha,
                         linewidths=linewidths, verts=verts,
                         edgecolors=edgecolors, data=data, **kwargs)
    finally:
        ax._hold = washold
    sci(ret)
    return ret

 

plot.scatter(x,dataRow_i.tolist(), 'r')

改为即可!

plot.scatter(x,dataRow_i.tolist(), c='r')

 

 

 

哈哈,大功告成!

 

 

 

 

 

 
打赏
 本文转载自:网络 
所有权利归属于原作者,如文章来源标示错误或侵犯了您的权利请联系微信13520258486
更多>最近资讯中心
更多>最新资讯中心
0相关评论

推荐图文
推荐资讯中心
点击排行
最新信息
新手指南
采购商服务
供应商服务
交易安全
关注我们
手机网站:
新浪微博:
微信关注:

13520258486

周一至周五 9:00-18:00
(其他时间联系在线客服)

24小时在线客服