Dmitry Balabka
Dmitry Balabka
@tyt2y3, I've tried to use visioncortex/visionmagic. Unfortunately, it leads to similar results or even worse. I'm looking for a tool that will accurately convert the raster version of SVG back...
@TorRient probably, [Vtracer](https://github.com/visioncortex/vtracer) is the best alternative. I didn't find anything better.
@cgevans seems `multi='independent'` should work. If I'm not mistaken, the new statistical function is not enough. According to [Efron's and Tibshirani's suggested algorithm](https://en.wikipedia.org/wiki/Bootstrapping_(statistics)#Bootstrap_hypothesis_testing) datasets should be preprocessed. Let's say we...
There is a different testing approach mentioned in Efron's book which has a different hypothesis: . The algorithm is similar to the permutation test. I'm going to try it.
Here is a quick prototype that implements distribution comparisons (see Algorithm 16.1 in Efron's book). I've tested it against [Mann-Whitney rank test](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.mannwhitneyu.html): ```python @numba.njit(parallel=True, fastmath=True, nogil=True) def compare_dist(z: np.ndarray, y:...
Here is a prototype for mean difference hypothesis testing (see Algorithm 16.2 in Efron's book). Tested against [T-test](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.ttest_ind.html): ```python @numba.njit(parallel=True, fastmath=True, nogil=True) def compare_mean(z: np.ndarray, y: np.ndarray, n_samples: int =...
@Warxcell thanks for the bug report. I will find out how to solve it for you. In general, I'm going to suspend the whole development of this repository but will...
@oleg-andreyev I'm in progress of reviewing this PR
@Warxcell thanks for your contribution! PHP 8.1 will support Enums out of the box: https://php.watch/versions/8.1/enums Probably, the only feature that isn't supported, yet, is `Maybe` monad that will be implemented...
@Warxcell technically Java, PHP 8.1 and this library's enums are the same thing. They can not be compared with constants enums because all these implementations uses singleton objects to represent...