I want to convert a dataframe like:
id  event_type count
1      "a"       3
1      "b"       5
2      "a"       1
3      "b"       2
into a dataframe like:
id    a    b   a > b
1     3    5     0
2     1    0     1
3     0    2     0
Without using for-loops. What's a proper pythonic (Pandas-tonic?) way of doing this?
 
     
    