Closed dougollerenshaw closed 3 years ago
The output of event_triggered_response contains columns event_number and event_time . These columns should be int and float, respectively. Instead, they are both strings.
event_triggered_response
event_number
event_time
int
float
We should cast to int and float before returning.
Addressed in PR #12
The output of
event_triggered_response
contains columnsevent_number
andevent_time
. These columns should beint
andfloat
, respectively. Instead, they are both strings.We should cast to
int
andfloat
before returning.