登录 注册
当前位置:主页 > 资源下载 > 37 > Python库footballpitchplot利用Plotly绘制包含事件的足球场,示例代码可在此处获取

Python库footballpitchplot利用Plotly绘制包含事件的足球场,示例代码可在此处获取

  • 更新:2024-08-06 11:20:20
  • 大小:5KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

足球场 使用Plotly绘制带有事件的足球场的Python库。 可以在此处找到示例: : 安装 需要plotly lib可用并进行设置。 参见: : 用法 from pitchplotter . plotter import Plotter plotter = Plotter ( "Demo" ) #create array as follows: [xpos, ypos, 'event name', event size] demo_arr = [ [ 25 , 50 , 'Event 1' , 34 ], [ 35 , 41 , 'Event 2' , 14 ], [ 20 , 33 , 'Event 3' , 23 ], [ 10 , 52 , 'Event 4' , 56 ], [ 45 , 60 , 'Event 5' , 9 ]