Basic nbinteract


In [2]:
from nbinteract import bar

def x(n): return list(range(n))
def y(xs, offset): return [offset + x for x in xs]

bar(x, y, n=(1, 5), offset=(1, 5))



In [ ]: