You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A fast, flexible delimited file reader/writer for Julia.
Installation
The package is registered in the General registry and so can be installed at the REPL with ] add CSV.
Documentation
STABLE — most recently tagged version of the documentation.
LATEST — in-development version of the documentation.
Project Status
The package is tested against Julia 1.0, current stable release, and nightly on Linux, OS X, and Windows.
Contributing and Questions
Contributions are very welcome, as are feature requests and suggestions. Please open an
issue if you encounter any problems or would just like to ask a question.
Alternatives
There are several other packages for reading CSV files in Julia, which may suit your needs better:
The standard library contains DelimitedFiles.jl, at least until Julia 1.8.
This returns a Matrix rather than a Tables.jl-style container, thus works best for files of homogeneous element type.
On large files, CSV.jl will be much faster.
CSVFiles.jl uses the FileIO.jl's load / save API,
but otherwise has similar goals. Like CSV.jl, it works with Tables.jl objects such as DataFrames.
Pandas.jl wraps Python's pandas library (using PyCall.jl).
This is a closer cousin of DataFrames.jl, but builds in the ability to read/write CSV files.
About
Utility library for working with CSV and other delimited files in the Julia programming language