File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 2
2
# coding=utf-8
3
3
"""
4
4
tableformatter supports and has been tested with the following tabular data types:
5
- - lists of lists or other iterables of iterables
6
- - two-dimensional NumPy array
7
- - list or another iterable of dicts (dict keys iterated through as column values )
8
- - dict of iterables (dict keys iterated through as rows where each key must be a hashable iterable)
9
- - NumPy record arrays (names as columns )
10
- - pandas.DataFrame
11
- - list or another iterable of arbitrary non-iterable objects (column specifier required )
5
+ * list of lists or another iterable of iterables
6
+ * two-dimensional NumPy arrays
7
+ * NumPy record arrays (names as columns )
8
+ * pandas.DataFrame
9
+ * list or another iterable of arbitrary non-iterable objects (column specifier required )
10
+ * list or another iterable of dicts (dict keys iterated through as rows where each key must be a hashable iterable)
11
+ * dict of iterables (keys as columns )
12
12
13
13
This example demonstrates tableformatter working with these data types in the simplest possible manner.
14
14
"""
You can’t perform that action at this time.
0 commit comments