Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
a0d0472
Merge pull request #1 from ACCLAB/master
josesho Jan 16, 2020
221ddb4
add and report permutation tests
josesho Jan 17, 2020
978990c
Update docstring for PermutationTest
josesho Jan 17, 2020
75a2c2e
add user-beckoned `lqrt` computations
josesho Jan 17, 2020
1a61324
update tests for LqRT; add tests for permutation pvalues
josesho Jan 17, 2020
e33b88b
add Python 3.8...
josesho Jan 17, 2020
6c6ac70
version bump to 0.3.0
josesho Jan 17, 2020
7eb7553
update license date
josesho Jan 17, 2020
f1fe97f
update random number generator
josesho Jan 17, 2020
43afc3a
update required numpy version
josesho Jan 17, 2020
049991d
update readme
josesho Jan 17, 2020
aa11043
update baseline images
josesho Jan 20, 2020
1d771bd
update default RNG
josesho Jan 20, 2020
8cd700e
update numerical tests after RNG change
josesho Jan 20, 2020
cb7b179
bump test library vers
josesho Jan 20, 2020
bbac291
use proper comparison (squash syntax warning in py3.8)
josesho Jan 20, 2020
2765a4e
lint
josesho Jan 20, 2020
015b09d
regenerate baseline images
josesho Jan 20, 2020
550a261
add trove classifiers
josesho Jan 20, 2020
0a7a6d9
fix missing comma!!!!
josesho Jan 20, 2020
0fdff42
regenerate baseline with freetype==2.10.0
josesho Jan 20, 2020
079536e
update docstring
josesho Jan 20, 2020
52fbbec
use PCG64 as default RNG
josesho Jan 20, 2020
5fb5d07
update baseline after RNG change
josesho Jan 20, 2020
733bad4
update versions in DOCS
josesho Jan 20, 2020
d181b3a
update tutorial in docs
josesho Jan 21, 2020
765b3ca
update docs
josesho Jan 21, 2020
9f94dee
update docstrings
josesho Jan 21, 2020
f10b8a3
update NEWS section
josesho Jan 21, 2020
d065671
update inline docs
josesho Jan 29, 2020
e33eea5
linting for permutation pvalues
josesho Jan 29, 2020
321d21c
restore keyword for permutation count
josesho Jan 30, 2020
9f5033f
flag for debugging
josesho Jan 30, 2020
910337c
add TOC
josesho Jan 30, 2020
d0d818a
update docstrings
josesho Jan 30, 2020
1d5f398
update lqrt requirements
josesho Jan 30, 2020
059e85d
update docs
josesho Jan 30, 2020
b17e143
update TOC?
josesho Jan 30, 2020
664f69c
update TOC?
josesho Jan 30, 2020
965823f
Merge branch 'v0.3.0' of https://github.com/josesho/DABEST-python int…
josesho Jan 30, 2020
5859e77
update TOC for the last time...
josesho Jan 30, 2020
a264080
Merge pull request #95 from josesho/v0.3.0
josesho Jan 30, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ env:
- PYTHON=3.5 BACKEND=agg
- PYTHON=3.6 BACKEND=agg
- PYTHON=3.7 BACKEND=agg
# - PYTHON=3.8 BACKEND=agg

- PYTHON=3.8 BACKEND=agg

before_install:
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The Clear BSD License

Copyright (c) 2016-2019 Joses W. Ho
Copyright (c) 2016-2020 Joses W. Ho
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@
[![Free-to-view citation](https://zenodo.org/badge/DOI/10.1038/s41592-019-0470-3.svg)](https://rdcu.be/bHhJ4)
[![License](https://img.shields.io/badge/License-BSD%203--Clause--Clear-orange.svg)](https://spdx.org/licenses/BSD-3-Clause-Clear.html)

## Contents
<!-- TOC depthFrom:1 depthTo:2 withLinks:1 updateOnSave:1 orderedList:0 -->
- [About](#about)
- [Installation](#installation)
- [Usage](#usage)
- [How to cite](#how-to-cite)
- [Bugs](#bugs)
- [Contributing](#contributing)
- [Acknowledgements](#acknowledgements)
- [Testing](#testing)
- [DABEST in other languages](#dabest-in-other-languages)

<!-- /TOC -->

## About

DABEST is a package for **D**ata **A**nalysis using **B**ootstrap-Coupled **EST**imation.
Expand All @@ -25,7 +39,7 @@ DABEST powers [estimationstats.com](https://www.estimationstats.com/), allowing

## Installation

This package is tested on Python 3.5, 3.6, and 3.7.
This package is tested on Python 3.5, 3.6, 3.7, and 3.8.
It is highly recommended to download the [Anaconda distribution](https://www.continuum.io/downloads) of Python in order to obtain the dependencies easily.

You can install this package via `pip`.
Expand Down
4 changes: 2 additions & 2 deletions dabest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@

from ._api import load
from ._stats_tools import effsize as effsize
from ._classes import TwoGroupsEffectSize
from ._classes import TwoGroupsEffectSize, PermutationTest

__version__ = "0.2.8"
__version__ = "0.3.0"
Loading