We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975a440 commit e27b296Copy full SHA for e27b296
doc/source/io.rst
@@ -4198,13 +4198,13 @@ Write to a feather file.
4198
4199
.. ipython:: python
4200
4201
- df.to_feather('example.fth')
+ df.to_feather('example.feather')
4202
4203
Read from a feather file.
4204
4205
4206
4207
- result = pd.read_feather('example.fth')
+ result = pd.read_feather('example.feather')
4208
result
4209
4210
# we preserve dtypes
@@ -4214,7 +4214,7 @@ Read from a feather file.
4214
:suppress:
4215
4216
import os
4217
- os.remove('example.fth')
+ os.remove('example.feather')
4218
4219
.. _io.sql:
4220
0 commit comments