Skip to content

Commit e27b296

Browse files
DOC: change extension from .fth to .feather
1 parent 975a440 commit e27b296

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/source/io.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -4198,13 +4198,13 @@ Write to a feather file.
41984198

41994199
.. ipython:: python
42004200
4201-
df.to_feather('example.fth')
4201+
df.to_feather('example.feather')
42024202
42034203
Read from a feather file.
42044204

42054205
.. ipython:: python
42064206
4207-
result = pd.read_feather('example.fth')
4207+
result = pd.read_feather('example.feather')
42084208
result
42094209
42104210
# we preserve dtypes
@@ -4214,7 +4214,7 @@ Read from a feather file.
42144214
:suppress:
42154215
42164216
import os
4217-
os.remove('example.fth')
4217+
os.remove('example.feather')
42184218
42194219
.. _io.sql:
42204220

0 commit comments

Comments
 (0)