parrt / lolviz

A simple Python data-structure visualization tool for lists of lists, lists, dictionaries; primarily for use in Jupyter notebooks / presentations

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hidden values of nested table

pytkr opened this issue · comments

commented

I find table in lolviz can not show values if cell in one row is a list, as:


T = [
    ['11','12','13','14',['a','b','c'],'16']
]
objviz(T)

Only the a, b, c are shown and 11, 12, 13, 14, and 16 are not shown, is this configurable? Thanks!

Weird. Yep, i only see:
Screen Shot 2019-08-05 at 11 40 24 AM

Even this doesn't work:

T = ['11','12','13','14',['a','b','c'],'16']
objviz(T)

Ah. actually use lolviz() not objviz(), @pytkr