Matt Helm
Matt Helm
I've been attempting to implement PAM in Julia for the past few days and I have a successful implementation that you can view [here](https://github.com/mthelm85/PAM.jl), along with some cluster quality comparisons...
CSV.jl has a ```normalizenames``` argument that can be set to ```true``` when reading a file. This option replaces invalid identifier characters (spaces) with underscores. I think it would be nice...
I get a 404 not found error when clicking the link to the docs for this package.
When attempting to access columns via ```cols()``` inside of a for loop, I get ```UndefVarError: i not defined.``` ``` function test(state::Int64, occ::Int64) @applychunked tbl begin @where !ismissing(:OCCP) && :ST ==...
It's pretty easy to compute a one-sided moving average with the ```mean``` function passed to ```moving```, but it would be nice to be able to compute a [centered moving average](https://planetcalc.com/7899/)....
I'm unable to implement the ```geoCentroid()``` function that is shown in [the Vega docs](https://vega.github.io/vega/docs/expressions/#geo-functions). This is needed to be able to place labels on maps.
I'm reading in a .csv file with DelimitedFiles like this: ```julia data = readdlm("clean_data.csv", ',', Int, header=true) ``` ```data[1]``` is a ```230×19 Array{Int64,2}``` and ```data[2]``` is a ```1×19 Array{AbstractString,2}```. However,...
Hi Tom, Would it make sense to include this as an available data transformation in StatsBase.jl? Right now, they just have z-score and unit range transformations.
Hello - I'm submitting this new PR for a microphone input based on feedback provided [here](https://github.com/JuliaPluto/PlutoUI.jl/pull/54). Thanks! Matt