I'm trying to bind a function to a button in my application so that it triggers an anomaly detection. Here's the code I have so far:
button = app.button("Execute anomaly-detection")
app.place(button)
ailtair_chart1 = app.altair_chart(title='MLII', data=df['MLII'])
app.place(line_chart1)
ailtair.bind(computeAndPlotAnomalies, df['MLII'], windowSize, top_k, triggers=[button])
app.register()
However, when I click on the button, I get Error: Internal Server Error. Runtime error executing computeAndPlotAnomalies. Can anyone help me figure out what's going wrong?
ok in your case scenario, I will assume that when creating the function you returned the right data type.
otherwise if your data is a line chart you should try to use the line:chart function as this
if you have any more trouble after this example, you can look at your documentation https://shapelets.io/doc/ https://github.com/shapelets/shapelets-demo