@@ -3861,8 +3861,6 @@ def wilcoxon(
3861
3861
3862
3862
def lrt (
3863
3863
self ,
3864
- reduced_formula : str = None ,
3865
- full_formula : str = None ,
3866
3864
reduced_formula_loc : str = None ,
3867
3865
full_formula_loc : str = None ,
3868
3866
reduced_formula_scale : str = None ,
@@ -3877,10 +3875,6 @@ def lrt(
3877
3875
"""
3878
3876
See annotation of de.test.lrt()
3879
3877
3880
- :param reduced_formula: formula
3881
- Reduced model formula for location and scale parameter models.
3882
- :param full_formula: formula
3883
- Full model formula for location and scale parameter models.
3884
3878
:param reduced_formula_loc: formula
3885
3879
Reduced model formula for location and scale parameter models.
3886
3880
If not specified, `reduced_formula` will be used instead.
@@ -3929,8 +3923,6 @@ def lrt(
3929
3923
for i , idx in enumerate (self .partition_idx ):
3930
3924
DETestsSingle .append (lrt (
3931
3925
data = self .X [idx , :],
3932
- reduced_formula = reduced_formula ,
3933
- full_formula = full_formula ,
3934
3926
reduced_formula_loc = reduced_formula_loc ,
3935
3927
full_formula_loc = full_formula_loc ,
3936
3928
reduced_formula_scale = reduced_formula_scale ,
@@ -3954,7 +3946,6 @@ def wald(
3954
3946
self ,
3955
3947
factor_loc_totest : str ,
3956
3948
coef_to_test : object = None , # e.g. coef_to_test="B"
3957
- formula : str = None ,
3958
3949
formula_loc : str = None ,
3959
3950
formula_scale : str = None ,
3960
3951
as_numeric : Union [List [str ], Tuple [str ], str ] = (),
@@ -3968,8 +3959,6 @@ def wald(
3968
3959
This function performs a wald test within each partition of a data set.
3969
3960
See annotation of de.test.wald()
3970
3961
3971
- :param formula: formula
3972
- model formula for location and scale parameter models.
3973
3962
:param formula_loc: formula
3974
3963
model formula for location and scale parameter models.
3975
3964
If not specified, `formula` will be used instead.
@@ -4018,8 +4007,7 @@ def wald(
4018
4007
DETestsSingle .append (wald (
4019
4008
data = self .X [idx , :],
4020
4009
factor_loc_totest = factor_loc_totest ,
4021
- coef_to_test = coef_to_test , # e.g. coef_to_test="B"
4022
- formula = formula ,
4010
+ coef_to_test = coef_to_test ,
4023
4011
formula_loc = formula_loc ,
4024
4012
formula_scale = formula_scale ,
4025
4013
as_numeric = as_numeric ,
0 commit comments