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

## Description Creating a large panel, and then "overwriting" it in a loop causes the process to just eat up more and more memory. ## MWE Note that this will...

CI

In order to improve readability of error messages

feature

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...

feature

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`,...

feature
non-breaking
breaking

https://github.com/JuliaData/DataFrames.jl/pull/2881 > need page(s) about indexing and select/transform/... which would be more detailed than Getting Started, but less technical that the API reference.

doc

I was thinking that it would be nice to have a skipmissing keyword argument in transform/select/combine The idea is that it would only use rows where none of the observations...

decision
feature

Hi @bkamins ! I thought that the HTML backend was much closer to the final version than LaTeX, but I was completely wrong :) I think I will start porting...

display

Hi @bkamins and @nalimilan, I started to see what features I need to implement in PrettyTables.jl so that we can use it as the HTML backend in DataFrames.jl. I will...

display

This would improve consistency with other methods

feature

Suppose I have an dataframe called `df_missing`: ``` 6×3 DataFrame │ Row │ id │ val │ other | │ │ Int64 │ Int64? │ Int64 │ ├─────┼───────┼─────────┼───────┤ │ 1...

feature
joins