Takuya Iwanaga

Results 44 issues of Takuya Iwanaga

Documentation with regard to usage and interpretation of Sobol' analysis should be expanded. See issue raised in #549 as an example of what users may face. Although this is a...

As first reported by @morrowcj > @ConnectedSystems, resource monitor confirmed that the parallel evaluator works as expected when run in a terminal. However, I have been unsuccessful getting it to...

bug

Juliaup appears to install unsigned binaries which subsequently get killed by anti-virus/end point protection. Is there any way this can be resolved as the current workaround is to manually download/install...

bug

As in title - this PR adds the PAWN moment-independent sensitivity analysis method to this package. Two additional dependencies are required: HypothesisTests (which provides the Kolmogorov-Smirnov test) and Logging. The...

Is there any interest in an extension package to support plotting GeoDataFrames with GeoMakie? Not being able to nicely plot GeoDataFrames directly with GeoMakie has been a small pain point...

Consider the example adapted from the widgets example [here](https://github.com/SimonDanisch/JSServe.jl/blob/fea0488df645f597d4eba277a57beb675b00b45f/docs/src/widgets.md?plain=1#L19): ```julia function rng_slider(orientation, val_range::AbstractRange, default_vals::Vector) range_slider = RangeSlider(val_range; value=default_vals) range_slider.tooltips[] = true range_slider.ticks[] = Dict( "mode" => "range", "density" => 1...

Hello, Before I start, thank you again for responding to my earlier request over at https://github.com/rafaqz/Flatten.jl/issues/14 The paper I mentioned is nearing its final draft stages and should be submitted...

I see. It's because you have just 2 parameters and are asking for second order indices. We don't prevent people from asking that, but it does not make much sense...

Draft PR for #66 - currently just a proof of concept. There's currently some issue with GDAL.jl which prevents successful precompilation. I've resolved it temporarily with: ```julia-repl add [email protected] ```...

Not sure if I'm creating false memories but I thought in the past I could create YAXArrays with mixed types? ```julia test_x = stack(Vector{Union{Int,String}}[[1, "Test"], [2, "Test2"]]) YAXArray(test_x) ``` ```julia...