Skip to content

Commit 747f5ce

Browse files
committed
Debug
1 parent 0b0a850 commit 747f5ce

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

doc/source/whatsnew/v0.23.0.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ What's new in 0.23.0 (May 15, 2018)
1414
.. ipython:: python
1515
:okwarning:
1616
17+
df = pd.DataFrame(
18+
{
19+
'foo': [1, 2, 3, 4],
20+
'bar': ['a', 'b', 'c', 'd'],
21+
'baz': pd.date_range('2018-01-01', freq='d', periods=4),
22+
'qux': pd.Categorical(['a', 'b', 'c', 'c'])
23+
},
24+
index=pd.Index(range(4), name='idx')
25+
)
26+
1727
df.index.name = 'index'
1828
1929
df.to_json('test.json', orient='table')

0 commit comments

Comments
 (0)