DataFrames.jl icon indicating copy to clipboard operation
DataFrames.jl copied to clipboard

In-memory tabular data in Julia

Results 170 DataFrames.jl issues
Sort by recently updated
recently updated
newest added

Assigning a named function to a column as its format I find the following feature from InMemoryDatasets very useful: - By default, formatted values are used for operations like: displaying,...

decision
feature

While I am implementing https://github.com/JuliaData/DataFrames.jl/pull/3055 let us discuss if we want some DataFrames.jl specific namespace of metadata. Following Apache Arrow, which reserves `ARROW:` prefix for keys, we could say that...

decision
display

Hi! I am submitting the initial version of the code that makes DataFrames.jl uses PrettyTables.jl as HTML backend. I need features that are not released in PrettyTables.jl yet. Hence, I...

display

Hi, really enjoying DataFrames.jl so far! I've noticed a slight performance issue, and I propose a quick work around. Assume we `groupby` a const dataset, and we then have to...

question

This is a small enhancement to make `GroupedDataFrame`s display so that they fit in one screen, like regular `DataFrame`s with many rows. Before, the first and last groups of a...

display

Related discussion in https://github.com/JuliaData/DataFrames.jl/issues/2384 At least for the subset of Reals where there is no real problem with counting unique values (e.g., integers in contrast with Floats) this should be...

feature

This PR waits for https://github.com/JuliaData/DataAPI.jl/pull/48. I have done an initial implementation. Now we need to discuss for which methods metadata propagation should happen. For now I have implemented it for...

feature
metadata

This issue is meant to gather requirements for all `join*` operations regarding the resulting order of rows after the join operation. After we finish the discussion I will implement it...

priority
feature
joins

I propose another `matchmissing=` setting, where `missing` on the left side matches every value on the right, not just `missing` on the right. We don't know which values the `missing`s...

question

`subset` takes `skipmissing=`: > If skipmissing=false (the default) args are required to produce vectors containing only Bool values. If skipmissing=true, additionally missing is allowed and it is treated as false...

question