make functions work row-wise
Currently all our functions work on columns, implicitly implementing something like the pandas option axis="columns"
. I guess it would be really useful to also make them work row-wise. I guess this could work out, if we implement axis
as a 'global' keyword (like e.g. dfilter
, target
and so on) and invert data
if axis="index"
.