Hi, I've got a Pandas data frame that looks like this
In [69]: data.head
Out[69]:
with 109 possible values of the OS columns and just two possible values
()VIDEO_OK and VIDEO_FAILURE) in the status column.
How can I use Pandas' dataframe magic to calculate, for each of the
possible 109 values, how many have VIDEO_OK, and how many have
VIDEO_FAILURE I have respectively?
I would like to end up with something like
In[]: num_of_oks{"iOS 13.3"}
Out: 15
In[]: num_of_not_oks{"iOS 13.3"}
Out: 3
I am trying to do some matplotlib scatter plotting
Thanks
--
https://mail.python.org/mailman/listinfo/python-list