Skip to content

Commit 5f4b96b

Browse files
committed
pandas.read_csv param delim_whitespace removed
Fix per https://pandas.pydata.org/pandas-docs/stable/whatsnew/v3.0.0.html (find text delim_whitespace) Issue/discussion: pandas-dev/pandas#55569
1 parent 592c7a8 commit 5f4b96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/examples/adr-pvarray/plot_fit_to_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
25 1000 75.0 273.651
5252
26 1100 75.0 301.013
5353
'''
54-
df = pd.read_csv(StringIO(iec61853data), delim_whitespace=True)
54+
df = pd.read_csv(StringIO(iec61853data), sep=r"\s+")
5555

5656
# %%
5757
#

0 commit comments

Comments
 (0)