pdeffebach
pdeffebach
Discussion on discourse [here](https://discourse.julialang.org/t/arrow-feather-and-parquet/28739/28?u=pdeffebach) indicated that there is nothing stopping us in theory from having all code live in Apache Arrow's mono-repo but have the Julia package be a subset...
@ronisbr As you know, multicolumn support in PrettyTables.jl is a feature I've wanted for a while. This PR is to add that support for the `:latex` backend. The reason to...
It would be nice if this showed percentages on the sides of the tables, like stata does.
GLMakie errors due to the stacktrace below: Package versions: ``` [cbdf2221] AlgebraOfGraphics v0.6.9 [336ed68f] CSV v0.10.4 [a93c6f00] DataFrames v1.3.4 [1313f7d8] DataFramesMeta v0.12.0 [e9467ef8] GLMakie v0.6.9 [4c0ca9eb] Gtk v1.2.1 [52522f7a] ReadStatTables...
This post outlines, briefly, how I would like metadata to work in DataFrames. * Metadata is a property of a column name in a data frame, not the vector itself....
Now that we have coalesced around a DataFrame being a collection of rows, other than a few notable exceptions, we should add an `insert!` method ``` insert!(df, row) ``` where...
perhaps for `combine` and `ByRow` we should re-size tables ``` julia> df = DataFrame(a = [1, 2]); julia> combine(groupby(df, :a), :a => (t -> [100, 200]) => :b) 4×2 DataFrame...
I'm currently working on a small implementation of a `Tables.AbstractRow`. It's basically a wrapper around an `OrderedDict` which is a `Tables.AbstractRow` and defines all the convenience methods of a `DataFrameRow`,...
This came up yesterday on slack We have `@chain` and `@pipe` etc. which make it easier to modify data without creating tons of intermediate names. We also have `transform!`, `select!`,...
I feel like the question about datframes with distributed arrays comes up a lot. My impression is that we don't know, for sure, if a Dagger array etc. can "just...