Skip to content
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

Edited the types in the documentation section. #244

Merged
merged 34 commits into from Dec 17, 2021
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
7e1a914
I replaced ndarray with ndarray of floats
Dec 12, 2021
583e816
I replaced the types in the documentation
Dec 12, 2021
a4bfb15
edited the documentation to float only
Dec 12, 2021
bb61584
Merge branch 'dev' into hypo-edit
sampan501 Dec 13, 2021
d80534b
Edited the types in the documentation section of discrim_two_samp
Dec 14, 2021
4e3442c
Edited the args type in the base.py
Dec 14, 2021
423d55a
edited types in dhsic.py
Dec 14, 2021
d014e3e
edited types in base.py
Dec 14, 2021
9738ec2
Edited types in base.py in independece
Dec 14, 2021
0394bb5
Edited types in cca.py in independence
Dec 14, 2021
0786333
Edited types in dorr.py in independence
Dec 14, 2021
d1b13f6
Edited types in hhg.py in independence
Dec 14, 2021
a9d3837
Edited types in hsic.py
Dec 14, 2021
5086409
edited types in kmerf.py in independence
Dec 14, 2021
ca73a09
Edited types in max_margin.py
Dec 14, 2021
835d51b
Edited types in mgc.py in independence
Dec 14, 2021
589a706
Edited types in rv.py in independence
Dec 14, 2021
2788684
Edited types in base.py in ksample
Dec 15, 2021
bf15168
Edited types in disco.py in ksample
Dec 15, 2021
edae67d
edited types in energy.py in ksample
Dec 15, 2021
ae4e29f
Edited types in hotelling.py in ksample
Dec 15, 2021
38225d6
Edited types in ksamp.py in ksample
Dec 15, 2021
5bcbb67
Edited types in manova.py in ksample
Dec 15, 2021
d9ad3c9
Edited types in mmd.py in ksample
Dec 15, 2021
76eada9
Edited types in base.py in time_series
Dec 15, 2021
6092461
Edited types in dcorrx.py in time_series
Dec 15, 2021
f020eb9
Edited types in mgcx.py in time_series
Dec 15, 2021
551254f
Edited types in common.py in tools
Dec 15, 2021
9318453
Edited types in the indep_sim.py in tools
Dec 15, 2021
7f71557
Edited types in ksample_sim.py in tools
Dec 15, 2021
b9851ca
Edtited types in power.py in tools
Dec 15, 2021
c3e2261
Edited types in time_series_sim.py in tools
Dec 15, 2021
ce403d9
Types Update
Dec 17, 2021
1f4b379
Types update in base.py
Dec 17, 2021
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
Prev Previous commit
Next Next commit
Edited types in max_margin.py
  • Loading branch information
najmieh committed Dec 14, 2021
commit ca73a092b41c34982d7f64cff425fde146d47b71
4 changes: 2 additions & 2 deletions hyppo/independence/max_margin.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def statistic(self, x, y):

Parameters
----------
x,y : ndarray
x,y : ndarray of float
Input data matrices. ``x`` and ``y`` must have the same number of
samples. That is, the shapes must be ``(n, p)`` and ``(n, q)`` where
`n` is the number of samples and `p` and `q` are the number of
Expand Down Expand Up @@ -138,7 +138,7 @@ def test(self, x, y, reps=1000, workers=1, auto=True, random_state=None):

Parameters
----------
x,y : ndarray
x,y : ndarray of float
Input data matrices. ``x`` and ``y`` must have the same number of
samples. That is, the shapes must be ``(n, p)`` and ``(n, q)`` where
`n` is the number of samples and `p` and `q` are the number of
Expand Down