Paper Print Help

2020-02-19 Thread Duram via Python-list
I have a drawing in a .gif file with (a,b) pixels and want to paperprint 
it in a position (x,y), what would be the code?

--
https://mail.python.org/mailman/listinfo/python-list


Re: Paper Print Help

2020-02-19 Thread Rhodri James

On 19/02/2020 14:22, Duram via Python-list wrote:
I have a drawing in a .gif file with (a,b) pixels and want to paperprint 
it in a position (x,y), what would be the code?


What have you tried?

--
Rhodri James *-* Kynesim Ltd
--
https://mail.python.org/mailman/listinfo/python-list


Pandas rookie

2020-02-19 Thread FilippoM



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