-
Notifications
You must be signed in to change notification settings - Fork 4
[ENH] Faster and more flexible code, and code sharing for kernel tests #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 15 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
d0a424e
Initial
adam2392 9a4a1e7
Initial
adam2392 194aeaa
Initial
adam2392 a13d822
Finished refactoring
adam2392 c2d7123
Finished refactoring
adam2392 dd0768f
Finished refactoring
adam2392 e91d5bd
Merge branch 'main' into kernelref
adam2392 d7a696b
Fix unit test
adam2392 d995845
Fix CI
adam2392 297fc1d
Adding citation file
adam2392 5b873f2
Address comments
adam2392 b634c63
Fixed
adam2392 f6ce858
Add docstring
adam2392 ab02ec3
Update to show patrick
adam2392 49eacea
Some changes
bloebp 674f086
Fix import
bloebp 6107e33
Address unit-tests
adam2392 19e6f98
Fix docstring
adam2392 598f09b
Fix some unit test issues
bloebp c0efa1f
Fix unit-tests
adam2392 ba44b7e
Clean up code
adam2392 c221b2e
Update lock file
adam2392 ed2ebe0
Remove extra scruff
adam2392 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# YAML 1.2 | ||
--- | ||
# Metadata for citation of this software according to the CFF format (https://citation-file-format.github.io/) | ||
cff-version: 1.2.0 | ||
title: 'Pywhy-Stats: Statistical inference in Python.' | ||
abstract: 'Pywhy-Stats is a Python library that leverages a simple API for performing independence and conditional independence testing.' | ||
authors: | ||
- given-names: Adam | ||
family-names: Li | ||
affiliation: 'Department of Computer Science, Columbia University, New York, NY, USA' | ||
orcid: 'https://orcid.org/0000-0001-8421-365X' | ||
- given-names: Patrick | ||
family-names: Blöbaum | ||
affiliation: 'Amazon' | ||
email: '[email protected]' | ||
type: software | ||
repository-code: 'https://github.com/py-why/pywhy-stats' | ||
license: MIT | ||
keywords: | ||
- causality | ||
- pywhy | ||
- statistics | ||
- independece testing | ||
... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
from . import fisherz, kci | ||
from ._version import __version__ # noqa: F401 | ||
from .independence import Methods, independence_test | ||
from .api import Methods, independence_test | ||
from .independence import fisherz, kci, power_divergence | ||
from .pvalue_result import PValueResult |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import fisherz, kci, power_divergence |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.