@@ -28,7 +28,7 @@ def feols(
2828 weights : Union [None , str ] = None ,
2929 ssc : Optional [dict [str , Union [str , bool ]]] = None ,
3030 fixef_rm : FixedRmOptions = "singleton" ,
31- fixef_tol = 1e-08 ,
31+ fixef_tol = 1e-06 ,
3232 fixef_maxiter : int = 100_000 ,
3333 collin_tol : float = 1e-09 ,
3434 drop_intercept : bool = False ,
@@ -94,7 +94,7 @@ def feols(
9494 Tolerance for collinearity check, by default 1e-10.
9595
9696 fixef_tol: float, optional
97- Tolerance for the fixed effects demeaning algorithm. Defaults to 1e-08 .
97+ Tolerance for the fixed effects demeaning algorithm. Defaults to 1e-06 .
9898
9999 fixef_maxiter: int, optional
100100 Maximum number of iterations for the demeaning algorithm. Defaults to 100,000.
@@ -533,7 +533,7 @@ def fepois(
533533 vcov_kwargs : Optional [dict [str , Union [str , int ]]] = None ,
534534 ssc : Optional [dict [str , Union [str , bool ]]] = None ,
535535 fixef_rm : FixedRmOptions = "singleton" ,
536- fixef_tol : float = 1e-08 ,
536+ fixef_tol : float = 1e-06 ,
537537 fixef_maxiter : int = 100_000 ,
538538 iwls_tol : float = 1e-08 ,
539539 iwls_maxiter : int = 25 ,
@@ -594,7 +594,7 @@ def fepois(
594594 estimates but it will impact standard errors.
595595
596596 fixef_tol: float, optional
597- Tolerance for the fixed effects demeaning algorithm. Defaults to 1e-08 .
597+ Tolerance for the fixed effects demeaning algorithm. Defaults to 1e-06 .
598598
599599 fixef_maxiter: int, optional
600600 Maximum number of iterations for the demeaning algorithm. Defaults to 100,000.
@@ -783,7 +783,7 @@ def feglm(
783783 vcov_kwargs : Optional [dict [str , Union [str , int ]]] = None ,
784784 ssc : Optional [dict [str , Union [str , bool ]]] = None ,
785785 fixef_rm : FixedRmOptions = "singleton" ,
786- fixef_tol : float = 1e-08 ,
786+ fixef_tol : float = 1e-06 ,
787787 fixef_maxiter : int = 100_000 ,
788788 iwls_tol : float = 1e-08 ,
789789 iwls_maxiter : int = 25 ,
@@ -848,7 +848,7 @@ def feglm(
848848 estimates but it will impact standard errors.
849849
850850 fixef_tol: float, optional
851- Tolerance for the fixed effects demeaning algorithm. Defaults to 1e-08 .
851+ Tolerance for the fixed effects demeaning algorithm. Defaults to 1e-06 .
852852 Currently does not do anything, as fixed effects are not supported for GLMs.
853853
854854 fixef_maxiter: int, optional
@@ -1209,7 +1209,7 @@ def quantreg(
12091209 context = {} if context is None else capture_context (context )
12101210
12111211 fixef_rm = "none"
1212- fixef_tol = 1e-08
1212+ fixef_tol = 1e-06
12131213 fixef_maxiter = 100_000
12141214 iwls_tol = 1e-08
12151215 iwls_maxiter = 25
0 commit comments