Skip to content

Commit 4efb7fa

Browse files
committed
Add column index dtypes
1 parent b49ff80 commit 4efb7fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

doc/source/developer.rst

+2
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ So that a ``pandas.DataFrame`` can be faithfully reconstructed, we store a
4646
4747
{'index_columns': ['__index_level_0__', '__index_level_1__', ...],
4848
'column_index_names': [<column index level name 0>, <column index level name 1>, ...],
49+
'column_index_dtypes': [<dtype 0>, <dtype 1>, ..., <dtype N>]
4950
'columns': [<c0>, <c1>, ...],
5051
'pandas_version': $VERSION}
5152
@@ -108,6 +109,7 @@ As an example of fully-formed metadata:
108109
109110
{'index_columns': ['__index_level_0__'],
110111
'column_index_names': [None],
112+
'column_index_dtypes': ['object'],
111113
'columns': [
112114
{'name': 'c0',
113115
'pandas_type': 'int8',

0 commit comments

Comments
 (0)