Skip to content

Commit a784a77

Browse files
committed
Fix some formatting for encode_categorical
1 parent 47b3b6a commit a784a77

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

janitor/functions/encode_categorical.py

+10-11
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
import warnings
2+
from enum import Enum
13
from typing import Hashable, Iterable, Union
4+
25
import pandas_flavor as pf
36
import pandas as pd
47
from pandas.api.types import is_list_like
5-
import warnings
8+
69
from janitor.utils import check, check_column, deprecated_alias
7-
from enum import Enum
810

911

1012
@pf.register_dataframe_method
@@ -90,17 +92,15 @@ def encode_categorical(
9092
>>> enc_df["foo"].cat.ordered
9193
True
9294
93-
94-
9595
:param df: A pandas DataFrame object.
9696
:param column_names: A column name or an iterable (list or tuple)
9797
of column names.
98-
:param kwargs: A mapping from column name to either `None`,
99-
`sort` or `appearance`, or a 1-D array. This is useful
98+
:param **kwargs: A mapping from column name to either `None`,
99+
`'sort'` or `'appearance'`, or a 1-D array. This is useful
100100
in creating categorical columns that are ordered, or
101101
if the user needs to explicitly specify the categories.
102102
:returns: A pandas DataFrame.
103-
:raises ValueError: if both `column_names` and `kwargs` are provided.
103+
:raises ValueError: If both `column_names` and `kwargs` are provided.
104104
""" # noqa: E501
105105

106106
if all((column_names, kwargs)):
@@ -167,21 +167,20 @@ def _as_categorical_checks(df: pd.DataFrame, **kwargs) -> dict:
167167
This function raises errors if columns in `kwargs` are
168168
absent from the dataframe's columns.
169169
It also raises errors if the value in `kwargs`
170-
is not a string (`appearance` or `sort`), or a 1D array.
170+
is not a string (`'appearance'` or `'sort'`), or a 1D array.
171171
172172
This function is executed before proceeding to the computation phase.
173173
174174
If all checks pass, a dictionary of column names and value is returned.
175175
176176
:param df: The pandas DataFrame object.
177-
:param kwargs: A pairing of column name and value.
177+
:param **kwargs: A pairing of column name and value.
178178
:returns: A dictionary.
179179
:raises TypeError: If `value` is not a 1-D array, or a string.
180180
:raises ValueError: If `value` is a 1-D array, and contains nulls,
181181
or is non-unique.
182182
"""
183183

184-
# column checks
185184
check_column(df, kwargs)
186185

187186
categories_dict = {}
@@ -255,7 +254,7 @@ def _as_categorical_checks(df: pd.DataFrame, **kwargs) -> dict:
255254
category_order_types = {ent.value for ent in _CategoryOrder}
256255
if value.lower() not in category_order_types:
257256
raise ValueError(
258-
"argument should be one of `appearance` or `sort`."
257+
"argument should be one of 'appearance' or 'sort'."
259258
)
260259

261260
categories_dict[column_name] = value

0 commit comments

Comments
 (0)