Kevin Bonham
Kevin Bonham
I'm frequently dealing with a really weird tabular data structure called a PCL file - basically, the first `n` rows contain various forms of metadata (first column for these rows...
I'm not sure if this is possible / correct, but it would be nice if there were a unified API for ordinations like MDS and PCA to extract the scaled...
Would like to be able to do something like this: ```julia using MetaGraphs using PlotRecipes g = MetaGraph(5) add_edge!(g, 1,2) add_edge!(g, 1,3) add_edge!(g, 3,4) set_prop!(g, Edge(1,2), :weight, 2.) set_prop!(g, Edge(1,3),...
The toolbar is getting pretty hefty, it would be great if the julia-specific buttons only showed up in a julia context. I only know this is possible because of [this...
- File pointed to in the link is `master.zip`, rather than `Maaslin2-master.zip` (though the inflated directory looks like the later). - Since it's a `zip` file rather than `.tar.gz`, `tar`...
From discussion on Slack with @pdeffebach, broadcasting seems to be a bit faster ``` using Missings, BenchmarkTools v = Vector{Union{Float64, Missing}}(rand(10000)); @benchmark disallowmissing($v) @benchmark Float64.($v) ``` 
I was thinking it would be nice to have some `filter!`-type functions, as well as the ability to rename fields. So for example, I'd like to be able to do:...
This came up a couple of times as I was trying to revamp Microbiome.jl - the `getindex()` function defined [here](https://github.com/EcoJulia/SpatialEcology.jl/blob/master/src/Commatrix_functions.jl#L108) doesn't seem to work, or at least doesn't work as...
On pop!_OS (ubuntu) - ``` ❯ curl -fsSL https://install.julialang.org | sh info: downloading installer sh: 134: cannot open /dev/?: No such file ``` I thought it might be a permissions...