Bogumił Kamiński
Bogumił Kamiński
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.
Currently in `hcat(x, df)` and `hcat(df, x)` we require `x` to be an `AbstractVector`. We could allow it to also be any Tables.jl table, so that the following would work:...
Users find it confusing that strings are iterable, see https://discourse.julialang.org/t/flatten-in-case-column-contains-string-and-array/61284/5. They are not iterable in broadcasting. On the other hand we should not follow the full semantics of `Base.broadcastable` as...
If both tables in join-operations are fitting into `Int32` range (probably a common case) then we can use `Int32` instead of `Int` for indexing. This should speed up things.
This has been discussed in several places I create a separate issue for this to keep track of it as it is an important functionality I think. What we want...
@ronisbr - I open this issue to keep track of to-do related to PrettyTables.jl: 1. coverage of show.jl is quite poor now: https://codecov.io/gh/JuliaData/DataFrames.jl/tree/master/src/abstractdataframe; it would be great to add more...
A separate issue to keep track only this feature