Andrey Oskin
Andrey Oskin
But `show` is a function, which is being called internally, when `DataFrame` object is displayed, right? So, currently the only way to make changes permanent is to pirate `display` function...
Yes, I meant default settings. Function in the snippet is an example of the internal library function which is doing actual printing at some time. It can be `printstyled` or...
As an example ```julia words1 = [join(rand('a':'z', rand(4:10))) for _ in 1:100] words2 = [join(rand('a':'z', rand(4:10))) for _ in 1:100] function f1(w1, w2) dl = DamerauLevenshtein() for word1 in w1,...
10 was only an example, basically a `sizehint!` to preallocate state vectors, of course, they can be resized on the fly. As for the multithreading and other valid points, the...
That's a good question. Since from the definition of `treemap` "maps each node of a tree to obtain a new tree.", it should return new tree, i.e. root node in...
It would be nice to read xlsx directly from the web, without intermediate storage on a hard drive. Looking at the source it seems like it's doable: 1. `XLSXFile` should...
There was an error ``` BOE: Test Failed at /home/travis/build/JuliaQuant/MarketData.jl/test/downloads.jl:31 Expression: boe("asdfasdf") Expected: APIError Thrown: UndefVarError ```
Well, here are some more thoughts in support of this proposal. 1. Performance. It is actually really great that TimeArrays are compatible with Tables.jl interface, but converting through them is...
> oh, what is the blueprint of this pkg? (And I never investigated it before) I guess it's better to move it to a corresponding issue/zulip, so not to deviate...
I have made small prototype, which one can toy with, to feel whether this approach is good or bad. https://github.com/Arkoniak/ProtoMarketData.jl