Skip to content

Commit

Permalink
fix #720 by introducing _model_name_plot arg
Browse files Browse the repository at this point in the history
  • Loading branch information
s3alfisc committed Dec 15, 2024
1 parent 4b2a562 commit d530af4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pyfixest/estimation/feols_.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,14 @@ class Feols:
_data: pd.DataFrame
The data frame used in the estimation. None if arguments `lean = True` or
`store_data = False`.
_model_name: str
The name of the model. Usually just the formula string. If split estimation is used,
the model name will include the split variable and value.
_model_name_plot: str
The name of the model used when plotting and summarizing models. Usually identical to
`_model_name`. This might be different when pf.summary() or pf.coefplot() are called
and models with identical _model_name attributes are passed. In this case,
the _model_name_plot attribute will be modified.
"""

def __init__(
Expand Down

0 comments on commit d530af4

Please sign in to comment.