-
```julia
julia> map(["a", "b"]) do fn
open(fn*".txt", "w") do io
write(io, fn == "a" ? "1\n" : "NA\n")
end
end;
julia> loadtable(["a.txt", "b.txt"], header_…
-
By using Dagger, we could load files in parallel.
See here for example: https://github.com/JuliaComputing/JuliaDB.jl/blob/8bf3057df154b7d0b592248bb3be98171dd28738/src/io.jl#L90
-
Somehow after updating the JuliaDB package, I will get that StatsBase is restricted to 0.24.0-0.32.2.
ERROR: Unsatisfiable requirements detected for package StatsBase [2913bbd2]:
StatsBase [2913…
-
I'm merging JuliaDB tables (these tables come from a data flux) into a global ndsparse table. But I'm running out of memory so I plan to use a "chunked out-of-core" table.
Is there a way to convert m…
-
# Base Packages
- [ ] StatsBase
- [ ] LearnBase
- [ ] MLBase.jl ? Not sure if anything is based on this, it is kinda more util (like MLDataUtils)
# Packages I have a handle on
- [ ] https…
-
#1 discusses DBI. I thought it is best to open a new issue. DBAPI.jl is looking quite good, and there seems to be general agreement on following the lead of python. We now have a fair number of databa…
-
the saving of table works, but I did not find any documentation.
`JuliaDB.save(db, "path/of/db")`
works without documentation.
```
help?> JuliaDB.save
save(io::IO, val)
Save a value in…
-
- [x] Think about `summarize` `groupby` etc... Is there need for macros?
- [x] Pipeline when using functions from `IndexedTables` that don't take data as first argument?
- [x] Docstrings
- […
-
There should be a way to mark e.g. a method as debugable, without instrumenting it per default.
Such a method would become instrumented once the user steps into an invocation of it. Debug info would h…
-
Hi, I'm trying to figure out how to make a custom parser in JuliaDB/TextParse and got stuck for several hours now.
My goal is to parse UUIDs into UInt128 (my data is quite big and this saves a lot of…