dfish

Results 204 comments of dfish

@devmotion, I like your idea of submitting a PR to StatsBase for DIC. I did not know that they implemented other model comparison metrics. I will look at the algorithm...

No problem. I might need some suggestions, as this is outside of my area of expertise. In the code above, tried to make a 1 X 1 square and a...

It appears to work correctly in this simple case: **Code** ``` using Polyhedra vertices = [[i, j, k] for i in 0:1 for j in 0:1 for k in 0:1]...

Hello, @Kelvyn88, I've been struggling to change the color of a button based on the code above. As a simple example, the following code changes the color of a label:...

Thank you. That works. I eventually found the answer but forgot to report back.

@gdalle, thanks for sharing. This is useful for me. Do you happen to know how to extend `Base.iterate` in your proposal? I've been struggling with that. Edit: I suppose it...

Hi Eric- I suspect one reason this model has not been added is that the `logpdf` for the zero inflated Poisson has not been implemented. Here my attempt at a...

As far as I can tell, most of the distributions mentioned so far appear to be implemented in Distributions or Turing. Although Turing has an [ordered-logistic](https://github.com/TuringLang/Turing.jl/blob/6dca57ed349e7c8e4242d56cde6d5f5b243ecae2/src/stdlib/distributions.jl#L134) distribution, I'm not sure...

Here is a working example for future reference: ``` using Distributions, Turing, StatsFuns, Random import Distributions: logpdf, rand struct ZIPoisson{T1,T2}

Unfortunately, I had trouble figuring out how to adapt the example above to `surival` in R. Here is what I tried, but the output didn't look correct: ``` library("survival") df...