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

Documentation update related to #2866. This is a work in progress and my first pull request. Contributions welcome.

doc

First, thank you all for this absolutely beautiful Julia Package :slightly_smiling_face: I am not sure if this is intended, but using `vcat` on `PooledArray` dataframe columns changes their type: ```julia...

decision

@nalimilan: Do we want `DataFrameRows` and `DataFrameColumns` to be considered to be Tables.jl tables and eg. define for them `nrow` and `ncol`?

question

Currently, when applying a transformation to all columns of a specific type (or subtypes of an abstract type), a pattern such as `transform(df, names(df, Number) .=> f)` is used. Ideally,...

decision
feature

what do you think of the utility of having a method of the flatten function in DataFrames that expands a dataframe type df2 in the form dfexp? ``` df =...

feature

in Pandas: ```py df = pd.DataFrame({ 'paddockId': [0, 0, 1, 1, 2, 2], 'color': ['red', 'blue', 'red', 'blue', 'red', 'blue'], 'count': [3, 4, 3, 4, 3, 4], 'weight': [0.2, 0.3,...

decision
feature
reshaping

See https://github.com/invenia/Wrangling.jl/issues/10. This should be worked on after #2147 is merged.

non-breaking
reshaping

This is a request for an `asof` join type, as seen in [pandas](https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.merge_asof.html), [kdb+](https://code.kx.com/q/ref/asof/), [QuestDB](https://questdb.io/docs/reference/sql/join/#asof-join), and probably a few others. This is a rather niche join, but extremely useful for...

feature
joins

It can be defined naively as ```julia function innerjoin!(a, b; kwargs...) leftjoin!(a, b; kwargs..., indicator=:_row_source) subset!(a, :_row_source => ByRow(==("both"))) select!(a, Not(:_row_source)) return a end ``` That is, simply delete (in-place)...

feature

I do not think it is a very felt need, but if it were not too complicated and at risk of unwanted side effects, a generalization of the value parameter...

feature
reshaping