Open ctb opened 5 years ago
suggestions based on code in https://github.com/drtamermansour/nu-ngs02/blob/master/Day5/kProcessor/Tutorial.ipynb --
kf.size() could be len(ksize), I think?
kf.size()
len(ksize)
The iterator functionality here,
it = kf2.begin() while(it != kf2.end()): it.next()
could be
for it in kf2: ...
using the Python iterator API.
suggestions based on code in https://github.com/drtamermansour/nu-ngs02/blob/master/Day5/kProcessor/Tutorial.ipynb --
kf.size()
could belen(ksize)
, I think?The iterator functionality here,
could be
using the Python iterator API.