diff --git a/_typos.toml b/_typos.toml new file mode 100644 index 0000000..66c04e3 --- /dev/null +++ b/_typos.toml @@ -0,0 +1,4 @@ +[default.extend-words] +# Allow dataset-specific column names from Hillstrom dataset +womens = "womens" +mens = "mens" diff --git a/docs/source/tutorials/hillstrom.rst b/docs/source/tutorials/hillstrom.rst index 8f25e64..63d0aed 100644 --- a/docs/source/tutorials/hillstrom.rst +++ b/docs/source/tutorials/hillstrom.rst @@ -44,7 +44,7 @@ Data Setup and Loading 'history': df['history'], 'history_segment': df['history_segment'].map(lambda s: int(s[0])), 'mens': df['mens'], - 'women': df['women'], + 'womens': df['womens'], 'zip_code': df['zip_code'].map(zip_code_mapping), 'newbie': df['newbie'], 'channel': df['channel'].map(channel_mapping)