博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TypeError: The numpy boolean negative, the `-` operator, is not supported, use the `~`
阅读量:6828 次
发布时间:2019-06-26

本文共 1777 字,大约阅读时间需要 5 分钟。

hot3.png

  • error
    • Traceback (most recent call last):
        File "C:/Users/Administrator/Desktop/pc/2018031800/jiaoyou2.py", line 8, in <module>
          print source
        File "D:\python2.7\lib\site-packages\pandas\core\base.py", line 35, in __str__
          return self.__bytes__()
        File "D:\python2.7\lib\site-packages\pandas\core\base.py", line 47, in __bytes__
          return self.__unicode__().encode(encoding, 'replace')
        File "D:\python2.7\lib\site-packages\pandas\core\frame.py", line 460, in __unicode__
          line_width=width, show_dimensions=show_dimensions)
        File "D:\python2.7\lib\site-packages\pandas\core\frame.py", line 1299, in to_string
          formatter.to_string()
        File "D:\python2.7\lib\site-packages\pandas\core\format.py", line 380, in to_string
          strcols = self._to_str_columns()
        File "D:\python2.7\lib\site-packages\pandas\core\format.py", line 329, in _to_str_columns
          fmt_values = self._format_col(i)
        File "D:\python2.7\lib\site-packages\pandas\core\format.py", line 501, in _format_col
          space=self.col_space
        File "D:\python2.7\lib\site-packages\pandas\core\format.py", line 1626, in format_array
          return fmt_obj.get_result()
        File "D:\python2.7\lib\site-packages\pandas\core\format.py", line 1642, in get_result
          fmt_values = self._format_strings()
        File "D:\python2.7\lib\site-packages\pandas\core\format.py", line 1670, in _format_strings
          is_float = lib.map_infer(vals, com.is_float) & notnull(vals)
        File "D:\python2.7\lib\site-packages\pandas\core\common.py", line 276, in notnull
          return -res
      TypeError: The numpy boolean negative, the `-` operator, is not supported, use the `~` operator or the logical_not function instead.
  • 解决办法:
    •   File "D:\python2.7\lib\site-packages\pandas\core\common.py", line 276, in notnull
          return -res
    • common.py进入这个文件将“return -res”改成“return ~res”

                    

转载于:https://my.oschina.net/u/3298130/blog/1645046

你可能感兴趣的文章
1-交换通信:单臂路由实验+DHCP
查看>>
Apache Cassandra和Apache Ignite:通过Ignite增强Apache Cassandra
查看>>
[API 开发管理] 分享几个 eoLinker 实用操作技巧
查看>>
网站安全问题的出现及解决方法
查看>>
java io FilterInputStream BufferedInputStream
查看>>
[转]shell脚本中echo显示内容带颜色
查看>>
有趣的GodMode
查看>>
TypeScript 类
查看>>
萌新入职注意事项-没WIFI也要看的秘技
查看>>
服务器压力测试软件 .
查看>>
循环队列的实现
查看>>
华为OSPF多区域实验
查看>>
Hibernate的unsaved-value
查看>>
Linux SVN 命令详解
查看>>
Vmware PowerCL 主机硬件的单元
查看>>
eclipse如何配置自带jdk
查看>>
Android笔记1——开发前奏1开发环境搭建和开发工具使用介绍
查看>>
DNS故障处理一例(转)
查看>>
10月第4周中国五大顶级域名净增约4.2万 美国净减14.5万
查看>>
12月14日中国域名商解析量17强:易名增幅最大
查看>>