Skip to content

Commit

Permalink
docs: document att attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
jolars committed Dec 8, 2023
1 parent 8fa20cd commit 4b881f2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion sortedl1/estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,14 @@ class Slope(BaseEstimator, RegressorMixin):
Attributes
----------
intercept_ : float
The estimated intercept.
coef_ : ndarray
The estimated regression coefficients.
The estimated regression coefficients in a sparse format.
sparse_coef_ : scipy.sparse.csc_matrix
The estimated regression coefficients in a dense format.
lambda_ : ndarray
The lambda parameter vector for the Sorted L1 Penalty.
"""

def __init__(
Expand Down

0 comments on commit 4b881f2

Please sign in to comment.