junglegobs
junglegobs
`DataFrames` column names are now strings, but Gadfly hasn't entirely been updated to reflect this it seems. For example: ```julia julia> names(df) 9-element Vector{String}: "iteration" "AbsR" "RelR" "Onshore Wind" "Offshore...
With dictionaries, I'm used to being able to write stuff like this: ```julia d = Dict((i,j) => j^i for i in 1:10, j in ["a","b"]) d[1,"a"] # returns "a" ```...
Currently the CSV package is restricted to versions below 0.7.10, which makes this package incompatible with other packages which use `CSV.jl`. I realise that there was a change in syntax...
Currently the section on [Starting workers](https://docs.julialang.org/en/v1/manual/distributed-computing/#Starting-and-managing-worker-processes) is quite brief. I guess all the information is there, but there is no example of a `machine-file`. For example, I currently do not...