TypedTables.jl
TypedTables.jl copied to clipboard
Simple, fast, column-based storage for data analysis in Julia
Hello, I wondered if we can create an empty FlexTable and add columns after... but noticed that FlexTable() raises ERROR: UndefVarError: `n` not defined. This is not a very explicit...
Hello, I was trying to append! a NamedTuple to Table... and noticed this odd behiavor ```julia julia> t = Table(a = [1, 2, 3], b = [2.0, 4.0, 6.0]) Table...
I have a pipeline where I use `TypedTable`s. One benefit I'd like to leverage is using the type information as some quality assurance, but I don't know how to explicitly...
```jl julia> Table() ERROR: UndefVarError: n not defined Stacktrace: [1] _ndims(#unused#::Type{Tuple{}}) @ TypedTables ~/.julia/packages/TypedTables/zfbS2/src/TypedTables.jl:26 ```
Adding/removing rows to/from DictTables only seems to work when the index column does not have a name, e.g., when the table is constructed from dictionaries: ```julia julia> idx = [1,...
As shown below, a failed `push!` (due to using Tuple or Array, not NamedTuple) adds a row with dummy data. Also, would it be possible to support `push!` by Tuple...
I have a [pull request](https://github.com/JuliaData/TypedTables.jl/pull/103#issue-1428898336) that addresses this issue. > I came across this while developing my package [`LazyTables.jl`](https://github.com/m-wells/LazyTables.jl) > > This should greatly improve performance of `TypedTables` (although for...
Appreciate if you can take a look at these warnings: ```julia WARNING: method definition for broadcasted at C:\Users\julio\.julia\packages\TypedTables\dycVq\src\DictTable.jl:301 declares type variable N but does not use it. WARNING: method definition...
The interface seems very similar to a StructArray, so I wonder what are the main differences. Are they highlighted somewhere? A cursory look suggests that a `Table` and a `StructArray`...
Hi, please let me know if this question has already been answered somewhere. However, I failed to copy a table with new column names. What I mean by that is...