We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c02059d commit 5ebb491Copy full SHA for 5ebb491
doc/source/user_guide/io.rst
@@ -4657,9 +4657,10 @@ See the `Full Documentation <https://github.com/wesm/feather>`__.
4657
'd': np.arange(4.0, 7.0, dtype='float64'),
4658
'e': [True, False, True],
4659
'f': pd.Categorical(list('abc')),
4660
- 'g': pd.date_range('20130101', periods=3),
4661
- 'h': pd.date_range('20130101', periods=3, tz='US/Eastern'),
4662
- 'i': pd.date_range('20130101', periods=3, freq='ns')})
+ 'g': pd.Categorical(list('abc'), ordered=True),
+ 'h': pd.date_range('20130101', periods=3),
+ 'i': pd.date_range('20130101', periods=3, tz='US/Eastern'),
4663
+ 'j': pd.date_range('20130101', periods=3, freq='ns')})
4664
4665
df
4666
df.dtypes
0 commit comments