Untitled

From Perl Treeshrew, 3 Months ago, written in Plain Text, viewed 60 times.
URL http://codebin.org/view/188e43ee Embed
Download Paste or View Raw
  1. calls_number = (calls.query('duration > 0')
  2.                              .groupby(['user_id', 'month'])
  3.                              .agg({'id':'count'}))
  4.  
  5.  
  6.  
  7. calls_number = (calls.query('duration > 0')
  8.                      .pivot_table(index = 'user_id',
  9.                                   columns = 'month',
  10.                                   values = 'id',
  11.                                   aggfunc = 'count'))

Replies to Untitled rss

Title Name Language When
Re: Untitled Chartreuse Parakeet text 3 Months ago.

Reply to "Untitled"

Here you can reply to the paste above