Skip to content

Commit

Permalink
DOC: Restore deleted see also description
Browse files Browse the repository at this point in the history
  • Loading branch information
has2k1 committed Feb 24, 2024
1 parent beebabb commit 4323c53
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions plotnine/mapping/aes.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,12 @@ class aes(Dict[str, Any]):
See Also
--------
plotnine.mapping.after_stat
plotnine.mapping.after_scale
plotnine.mapping.stage
plotnine.mapping.after_stat : For how to map aesthetics to variable
calculated by the stat
plotnine.mapping.after_scale : For how to alter aesthetics after the
data has been mapped by the scale.
plotnine.mapping.stage : For how to map to evaluate the mapping to
aesthetics at more than one stage of the plot building pipeline.
"""

def __init__(self, *args, **kwargs):
Expand Down
4 changes: 2 additions & 2 deletions plotnine/stats/density.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ def get_var_type(col: pd.Series) -> Literal["c", "o", "u"]:
See Also
--------
The origin of the character codes is
[](`~statsmodels.nonparametric.kernel_density.KDEMultivariate`).
statsmodels.nonparametric.kernel_density.KDEMultivariate : For the origin
of the character codes.
"""
if array_kind.continuous(col):
return "c"
Expand Down

0 comments on commit 4323c53

Please sign in to comment.