Unconquerable p 2022-08-04 16:39 采纳率: 90.9%
浏览 278
已结题

Matplotlib运行失败

代码:


import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.animation as animation
    
if __name__ == '__main__':
    #调试部分
    print("program running")
    x1=[1,2,3]
    y1=[3,4,5]
    z1=[6,7,8]
    fig = plt.figure()
    ax = Axes3D(fig,auto_add_to_figure=False)
    fig.add_axes(ax)
    ax.legend(loc='best')
    ax.axis('off')
    def demo(num):
        print("running")
        a=tmin_+((tmax_-tmin_)/tnums)*(num%tnums)
        print(a,(tmax_-tmin_)/tnums,num)
        ax.scatter(x1[:num],y1[:num],z1[:num], c = 'r')
    print(1)
    ani = animation.FuncAnimation(fig, demo,fargs=[],
                                  interval=0)
    fig.show()
    print("end...")

结果未显示图像(一闪而过)
运行结果:(console里的内容)


1
end...
No handles with labels found to put in legend.
C:\Users\*****\AppData\Roaming\Python\Python39\site-packages\matplotlib\animation.py:973: UserWarning: Animation was deleted without rendering anything. This is most likely unintended. To prevent deletion, assign the Animation to a variable that exists for as long as you need the Animation.
  warnings.warn(

Animation的哪里出了问题?(急用求解决)

  • 写回答

1条回答 默认 最新

  • Yeats_Liao Java领域优质创作者 2022-08-05 09:55
    关注

    No handles with labels found to put in legend. 没有在图例中找到带标签的句柄。
    ax.legend()是为了展示标签,你的ax.legend()方法没加label参数
    ax.legend(loc='best', label="xx")

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 8月13日
  • 已采纳回答 8月5日
  • 创建了问题 8月4日

悬赏问题

  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件
  • ¥15 K8S部署二进制集群过程中calico一直报错
  • ¥15 java python或者任何一种编程语言复刻一个网页
  • ¥20 如何通过代码传输视频到亚马逊平台
  • ¥15 php查询mysql数据库并显示至下拉列表中
  • ¥15 freertos下使用外部中断失效
  • ¥15 输入的char字符转为int类型,不是对应的ascall码,如何才能使之转换为对应ascall码?或者使输入的char字符可以正常与其他字符比较?
  • ¥15 devserver配置完 启动服务 无法访问static上的资源
  • ¥15 解决websocket跟c#客户端通信