Jonathan Feinberg

Results 175 comments of Jonathan Feinberg

Yeah, that would be a bit slow, yes. Yes, that should be possible. just do: ```python uniform = chaospy.Iid(chaospy.Uniform(0, 1), 46) u_samples = uniform.sample(20000, rule="halton") samples = mixture_model.inv(u_samples) ``` The...

Indeed. Thanks, I'll have it resolve with the next update.

Interesting couple of projects you have there. Thank you for the offer. I'll take a closer look over the summer. I imagine there are some functionality that make sense to...

You have a few extra quadrature rules I'd love to add to the fold. Namely Kronrod, Lobatto and Newton-Cotes. You even have a few I haven't heard about before like...

Thanks. Radau is straiht forward it seems. Tanh-sinh seems to be a bit work to adapt. I'll see if I can get my head around it. I am currently working...

Hello. What you are asking for should be doable, but is likely not as straight forward as one would like. However, I do see this as an excellent usecase for...

@flo2k since you made the 1D KDE distribution. your thoughts on a multivariate variant version is welcome. (Also, congrats on the baby.)

The error you are getting is still using the old backend. I should perhaps have been more explicit with my instructions, so let us try again. You need to install...

The results are roughly correct, but clearly not accurate enough. Your results tells me the Rosenblatt transformation works in principle, but the accuracy of the approximation is too low. Let...

You're welcome. As I said, it is an interesting usecase that would be nice to include into the code base. The picture confirms that the problem most likely lies in...