Releases: TidierOrg/TidierFiles.jl
Releases · TidierOrg/TidierFiles.jl
v0.3.0
v0.2.2
TidierFiles v0.2.2
- changes default missing value for
write_csv
to align withread_csv
v0.2.1
v0.2.0
TidierFiles v0.2.0
Breaking Changes
- Bumps julia LTS to 1.10
Merged pull requests:
Closed issues:
- col_types missing from read_csv() but present in docs (#21)
v0.1.6
TidierFiles v0.1.6
- adds support for
col_types
in all CSV.jl based readers to manually select a column type, in addition to support for using anyCSV.read
argument within any of theread_*
CSV.jl based functions. - changes argument name from
missingstring
tomissing_value
for all functions where its supported.
Merged pull requests:
v0.1.5
TidierFiles v0.1.5
-adds list_files("path", "suffix")
to list all files in a location
- fixes type
parsing
issue whereread_xlsx
would read most types asAny
Merged pull requests:
Closed issues:
- Function to list all files in a directory (#18)
v0.1.4
TidierFiles v0.1.4
- adds
read_rdata
for reading.rds
and.rdata
files - adds
read_file
andwrite_file
as type agnostic read write functions that dispatch the correct function for any file type
Merged pull requests:
Closed issues:
- add ability to write to to specific excel sheet (#16)
v0.1.3
TidierFiles v0.1.3
v.1.3 Adds support for reading multiple files into one DataFrame at once when paths/urls are passed as a vector
-read_csv
-read_csv2
-read_delim
-read_tsv
-read_parquet
Merged pull requests:
v0.1.2
TidierFiles v0.1.2
- adds
read_csv2
defaults to delim = ';' and decimal = ',' - adds
decimal
andgroupmark
arguments toread_delim
for more user control
Merged pull requests:
Closed issues:
decimal
-parameter for reading CSV-files? (#11)