chris-b1
chris-b1
For the mapping overloads of `rename` / `rename!` - I've at times wanted to ignore columns that aren't found. ```julia rename(df::AbstractDataFrame, (from => to)::Pair...) rename(df::AbstractDataFrame, d::AbstractDict) rename(df::AbstractDataFrame, d::AbstractVector{ df =...
Currently, `missing` is treated as the largest value in a sort. pandas has a `na_position` kwarg that lets you specify how missing data should be ordered, by default placing it...
This might be too specific to be implemented in the LanguageServer, but for consideration Inside the context of macro, I would like the ability to hook into the autocomplete machinery...
This may or may not make sense at the Dagger level, but for consideration - as an example copying the [prefect ](https://docs.prefect.io/core/tutorial/04-handling-failure.html#if-at-first-you-don-t-succeed)keywords below ```julia import Dates import Dagger function flaky_function()...
This feels a bit verbose / hard to remember for reading a DataFrame, especially in an interactive context ``` df = DataFrame(XLSX.readtable(f, 1, infer_eltypes=true)...) ``` First, defaults that I would...
This function could likely be more generic, accepting instead an `AbstractMatrix`, and iterating with `eachindex`. The specific usecase this came up in was writing an `OffsetArray`. https://github.com/felipenoris/XLSX.jl/blob/68a6cf5aff00987e82afb9684a71bb732a89928c/src/write.jl#L352-L360
This is the same issue/approach as #142 I'm doing some profiling on XLSX.jl and this picks up a nice little win ```julia # master julia> @btime XLSX.readtable(f, "Sheet1") 341.240 ms...
This seems like generic enough functionality it could make sense to put in HTTP.jl. I don't have an api figured out, but just as a placeholder/starting point ```julia # ?serve_file...
I think it would be reasonable to support this directly as an overload of `readxl` / `readxlsheet`. Below is a example/workaround using xlrd directly. ```julia using HTTP using ExcelReaders r...
It seems that Revise doesn't have the ability track changes functions to in CodeTracking.jl. Is this is fundamental limitation of the architecture due to CodeTracking relying on Revise, or something...