JuliaDBMeta.jl
JuliaDBMeta.jl copied to clipboard
Metaprogramming tools for JuliaDB
Seems like this repository switched organizations but the README links weren't updated.
This pull request changes the compat entry for the `IndexedTables` package from `0.12.1, 0.13` to `0.12.1, 0.13, 1.0`. This keeps the compat entries for earlier versions. Note: I have not...
This pull request changes the compat entry for the `Dagger` package from `0.7, 0.8, 0.9` to `0.7, 0.8, 0.9, 0.11`. This keeps the compat entries for earlier versions. Note: I...
This pull request changes the compat entry for the `Reexport` package from `0.2` to `0.2, 1.0`. This keeps the compat entries for earlier versions. Note: I have not tested your...
This pull request changes the compat entry for the `Dagger` package from `0.7, 0.8, 0.9` to `0.7, 0.8, 0.9, 0.10`. This keeps the compat entries for earlier versions. Note: I...
See MWE: ```julia t = JuliaDB.table((a = [1,2, missing, 4, missing],)) t = @transform_vec t {a = coalesce(:a, 2)} ``` `a` is not replaced, but the below is fine, the...
I get a 404 not found error when clicking the link to the docs for this package.
What is the difference between those two? The docs don't have any hint. And if there is none, it'd be good to say that in the doc.
When attempting to access columns via ```cols()``` inside of a for loop, I get ```UndefVarError: i not defined.``` ``` function test(state::Int64, occ::Int64) @applychunked tbl begin @where !ismissing(:OCCP) && :ST ==...
@nalimilan had a beautiful suggestion here: https://github.com/JuliaData/DataFrames.jl/issues/1514#issuecomment-423222435. There may actually be very little need to have separate row-wise and column-wise macros. The row-wise macro could simply also accepts columns (as...