Emma Daniels

Results 8 comments of Emma Daniels

I created a draft (there are some minor issues) pull request for a Fisk implementation in #440 However, looking into the R code some more, I realised that the R...

I don't think so. But if someone with more statistical knowledge thinks otherwise it would be good to know.

After some further investigation it seems the python SciPy Fisk option is the better one to use. The genlogistic in python is a special generalised logistic distribution, not THE generalised...

I was wondering as I was making changes to the docs whether they should not include the possibility of pre-computing SPEI distribution fitting variables. This seems possible in the code...

Hmmm, the tests that fail are for SPI and Pearson, are they related to things I've changed in the branch? `=========================== short test summary info ============================ 331 FAILED tests/test_compute.py::test_transform_fitted_pearson -...

I started working out the makkink formulation for PET but found the climate_indices code too complex to start from there. I'll share the basic function here and in #101, so...

Hi @monocongo, would it be relatively straight forward to compute daily SPEI values if a time-independent PET calculation would be available? I've been using Makkink (https://nl.wikipedia.org/wiki/Referentie-gewasverdamping) which is based on...

Here's a formulation for Makkink in case someone else wants to go ahead and implement it: ``` def makkink_KNMI(TG, Q): T = TG - 273.15 #[degC] #1) verzadigde dampspanning tov...