[~] Refactor

This commit is contained in:
Siarhei Siniak 2021-07-21 09:57:32 +03:00
parent 61bdf35fd2
commit c1dd95c765

@ -1003,3 +1003,18 @@ def kernel_14(
return dict( return dict(
o_13=o_13, o_13=o_13,
) )
def kernel_15(
o_14,
):
t1 = pandas.DataFrame(
numpy.unique(
o_14['o_13']['t1']['name'].data,
return_counts=True
)
).T
pprint.pprint(
dict(
t1=t1,
)
)