I have a large dataset that looks like the below. I'd like to know if there is a significant statistical difference between when the event occurs vs when it does not occur. The assumption here is that the higher the percent change the more meaningful/better.
In another dataset the "event occurs" column is "True, False, Neutral". (Please ignore the index as that is the default pandas index.)
   index    event occurs            percent change
    148       False                  11.27
    149        True                  14.56
    150       False                  10.35
    151       False                   6.07
    152       False                  21.14
    153       False                   7.26
    154       False                   7.07
    155       False                   5.37
    156        True                   2.75
    157       False                   7.12
    158       False                   7.24
What's the best way of determining the significance when it's "True/False" or when it's "True/False/Neutral"?
 
    