(pd.read_csv, "os", FileNotFoundError, "csv"),
(pd.read_fwf, "os", FileNotFoundError, "txt"),
(pd.read_excel, "xlrd", FileNotFoundError, "xlsx"),
- (pd.read_feather, "feather", Exception, "feather"),
+ (pd.read_feather, "pyarrow", Exception, "feather"),
(pd.read_hdf, "tables", FileNotFoundError, "h5"),
(pd.read_stata, "os", FileNotFoundError, "dta"),
(pd.read_sas, "os", FileNotFoundError, "sas7bdat"),
(pd.read_table, "os", FileNotFoundError, "csv"),
(pd.read_fwf, "os", FileNotFoundError, "txt"),
(pd.read_excel, "xlrd", FileNotFoundError, "xlsx"),
- (pd.read_feather, "feather", Exception, "feather"),
+ (pd.read_feather, "pyarrow", Exception, "feather"),
(pd.read_hdf, "tables", FileNotFoundError, "h5"),
(pd.read_stata, "os", FileNotFoundError, "dta"),
(pd.read_sas, "os", FileNotFoundError, "sas7bdat"),
(pd.read_table, "os", ("io", "data", "iris.csv")),
(pd.read_fwf, "os", ("io", "data", "fixed_width_format.txt")),
(pd.read_excel, "xlrd", ("io", "data", "test1.xlsx")),
- (pd.read_feather, "feather", ("io", "data", "feather-0_3_1.feather")),
+ (pd.read_feather, "pyarrow", ("io", "data", "feather-0_3_1.feather")),
(
pd.read_hdf,
"tables",
[
("to_csv", {}, "os"),
("to_excel", {"engine": "xlwt"}, "xlwt"),
- ("to_feather", {}, "feather"),
+ ("to_feather", {}, "pyarrow"),
("to_html", {}, "os"),
("to_json", {}, "os"),
("to_latex", {}, "os"),