Bogumił Kamiński

Results 1355 comments of Bogumił Kamiński

Well it is pre 1.0 release, but it would be quite a big change. Let us see what @nalimilan thinks 😄.

This is a bug in CSV.jl in case when quote `"` is used but does not encompass whole field: ``` julia> titles[179627:179629, :] 3×8 DataFrame Row │ tconst ordering title...

Using `quoted=false` when reading a file resolves your issue, but it is still a bug in CSV.jl I think as error that the file is malformed should be emitted.

Do I understand correctly we refer to this signature: ``` similar(array, [element_type=eltype(array)], [dims=size(array)]) ``` (i.e. similar with `array` passed as an instance of an array). In this case the docstrings...

What we would need to do is to allow types from IntervalSets.jl to be category levels (now only char, string and number are allowed). But I think it would make...

I assume that a basic use case is that: 1. originally, you have a continuous variable. 2. you bin it (e.g. for an input into some model) 3. later you...

The reason is that, in general, operations: ``` :y = :x .* 2 ``` and ``` :z = :y .+ 2 ``` could be executed in parallel, so `:y` is...

> But if he doesn't want to add it, I'm happy with the status quo. It is not the issue of the burden, as we already have `threads` keyword argument...

The reason why this is not allowed is that `gdf[1]` would be ambiguous as it could mean: 1. Selecting the first group. 2. Selecting the group with key equal to...

We could use `At` (or other such wrapper), but in this case it is longer to write `At(1)` than `(1,)`. And this was a consideration why we did not introduce...