Anshul Singhvi

Results 1170 comments of Anshul Singhvi

Thanks for the advice! I'm primarily looking at 1D discretizations, but if I'm putting the effort in anyway, may as well write it for 2/3D too :D I'd lean towards...

I believe that Plots.jl defines the `Plot` type in RecipesBase.jl, which is a very lightweight package. Makie does not define its top-level type in MakieCore, its equivalent of RecipesBase, so...

I suspect not. Neither is Makie's saving functionality (using FileIO) defined in MakieCore. You could use https://github.com/JuliaPackaging/Requires.jl to add some code which will load only when the respective library (Plots/Makie)...

Aha! I thought it was something like that. Yes, Makie has some good stuff - grid layouts are made using https://github.com/jkrumbiegel/GridLayoutBase.jl which is not too well documented but shouldn't be...

The documenter build did not run on the tag - this is a Github Actions issue. Do you have a `DOCUMENTER_KEY` set up in the repo @felixcremer? @lazarusA, it's a...

Just FYI you can also dispatch on functions, so if you don't mind repeating the mean calculation, you could simply dispatch confint as `confint(x, design, ::typeof(mean))` etc.

I haven't looked through the code too much, but a partial solution presents itself: ```julia abstract type AbstractSurveyDesign end struct SurveyDesign

Ah, I just realized I suggested two different approaches :D - let's discuss on the call if any of those make sense.

What's the average number of vertices for your shapes? Have you tried other geometry libraries like ArchGDAL.jl?

Great! In this case, you should use `GeoInterface.convert(ArchGDAL, shape1)` - it's more efficient. Looks like there is a memory leak in the Julia wrapper of LibGEOS (this package), since ArchGDAL...