Git Product home page Git Product logo

difference_test_with_permutation's Introduction

Difference test by Permutation method

This code calculates p-value of difference by using permuted sampling T-test and Median test in case of unbalanced sample size between 2 groups. For example, group1 has only 7 samples, and group2 has only 200 samples.

Example :

from difference_test.diff_stats import diff_stats
import pandas as pd

# Your Pandas file
df = pd.read_csv('Some_of_your_data.csv', index_col=0)
# Small group
group1 = ['Sample1', 'Sample2', 'Sample3', 'Sample4', 'Sample5', 'Sample7']
# Large group
group2 = ['Somegroup']*100

diff_s = diff_stats(df, small_group=group1, large_group=group2)



# T-test result
result = diff_s._permuted_ttest(df, small_group=group1, large_group=group2, perm=100)

# Median-test result(Null distribution from permuted large population)
result = diff_s._permuted_median_test(df, small_group=group1, large_group=group2, perm=100)

# Combined result (Don't use this function because of an error)
# result = diff_s.combined_pvalues(perm=100)

print result

difference_test_with_permutation's People

Contributors

swiri021 avatar

Watchers

 avatar  avatar

Forkers

animesh

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.