Open
Description
First, thanks for working on this extension - I think it's incredibly important functionality for JupyterLab and is one of the most requested features from my users!
I'm just starting to try it out and have a couple of suggestions.
- Since space is at a premium the shape column should just show the shape tuple - e.g.
(100, 3)
.
The datatype (Array/DataFrame) is redundant since it just duplicates the TYPE column
The rows/columns are redundant since they're implicit in the ordering - After the type and shape the next most important information for me is the dtype so I'm wondering if there is some way to incorporate that? For the DataFrame seeing the column names (under content) is nice but it woudl be more useful if it were a
name: type
mapping. I can imagine that might quickly become too much information to display but thought I'd mention it in case anyone has a good solution. - I'm not sure of the utility of the content view as is since space is often too limited to show enough information. Perhaps displaying the content is best left for a specific content-view triggered on double-click - as is already done.
Edit: I guess it's very useful to quickly see the value of scalars or e.g. short tuples/lists 🤔