Код: Выделить всё
import ibis
from ibis import _
t = ibis.memtable({
'i': [1,2,3],
'x': [[1,2],[3,5],[6,7] ]
})
Код: Выделить всё
t.select(t.x.map(_ + 1))
Код: Выделить всё
t.select(_.x.map(_ + 1))
Подробнее здесь: https://stackoverflow.com/questions/785 ... he-undersc