Code Monkey home page Code Monkey logo

Comments (6)

josef-pkt avatar josef-pkt commented on September 18, 2024 1

@maximtrp It is numerically better to use scipy distribution sf for upper tail pvalues
in cases like this, cdf should be replaced by sf
p_value = 2. * (1. - ss.t.cdf(np.abs(t_value), df = x_len_overall - x_len))
to
p_value = 2. * ss.t.sf(np.abs(t_value), df = x_len_overall - x_len)

1 - cdf is limited in values to floating point precision at 1, while sf in most distribution can compute much smaller tail probabilities.

from scikit-posthocs.

maximtrp avatar maximtrp commented on September 18, 2024

@dyballa
Thanks for giving it a try. What test are you using?

from scikit-posthocs.

dyballa avatar dyballa commented on September 18, 2024

@maximtrp With PMCMR, I'm using posthoc.kruskal.conover.test with p.adjust.method="none".

from scikit-posthocs.

maximtrp avatar maximtrp commented on September 18, 2024

@dyballa I've compared the original PMCMR algorithm for Conover's test and my port of it line by line. This is not related to posthocs package. The differences arise on calculating p-values, using SciPy's scipy.stats.t.cdf() function. Anyway, differences are seen only in extremely small values. Probably, it is related to rounding error. Needs further investigation.

from scikit-posthocs.

dyballa avatar dyballa commented on September 18, 2024

@maximtrp Interesting! Thanks, I appreciate your checking this.

from scikit-posthocs.

maximtrp avatar maximtrp commented on September 18, 2024

@josef-pkt Thank you!

from scikit-posthocs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.