Skip to content

Commit b5f7b29

Browse files
committed
Register CSV, Feather, Excel and various stats formats
1 parent ecd331f commit b5f7b29

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/registry.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ end
1616

1717
add_format(format"RData", detect_rdata, [".rda", ".RData", ".rdata"], [:RData, LOAD])
1818

19+
add_format(format"CSV", (), [".csv"], [:CSVFiles])
20+
add_format(format"Feather", (), [".feather"], [:FeatherFiles])
21+
add_format(format"Excel", (), [".xls", ".xlsx"], [:ExcelFiles, LOAD])
22+
add_format(format"Stata", (), [".dta"], [:StatFiles, LOAD])
23+
add_format(format"SPSS", (), [".sav", ".por"], [:StatFiles, LOAD])
24+
add_format(format"SAS", (), [".sas7bdat"], [:StatFiles, LOAD])
25+
1926
# Image formats
2027
add_format(format"PBMBinary", b"P4", ".pbm", [:ImageMagick])
2128
add_format(format"PGMBinary", b"P5", ".pgm", [:Netpbm])

0 commit comments

Comments
 (0)