Skip to content

Release v0.00.21 - PyTorch histogramming + interactive error bars

Choose a tag to compare

@miranov25 miranov25 released this 03 Aug 08:18
· 1791 commits to master since this release
72bf8d9

PyTorch histogramming

Interactive error bars

  • working for pandas
  • for ROOT trees additional parsing to be done
  • see example RootInteractive/InteractiveDrawing/bokeh/test_bokehDrawSA.py
  • Example syntax:
figureArray = [
#   ['A'], ['C-A'], {"color": "red", "size": 7, "colorZvar":"C", "filter": "A<0.5"}],
    [['A'], ['C-A'], {"color": "red", "size": 7, "colorZvar": "C", "errY": "errY", "errX":"0.01" }],
    [['A'], ['C+A', 'C-A']],
    [['B'], ['C+B', 'C-B'], {"color": "red", "size": 7, "colorZvar": "C", "errY": "errY" }],
    [['D'], ['(A+B+C)*D'], {"size": 10, "errY": "errY"} ],
    [['D'], ['D*10'], {"size": 10, "errY": "errY"}],
]