A set of functions for working with categorical columns in pandas
Project description
The package contains just a few features that make using pandas categorical types easier to use. The main purpose of using categorical types is to reduce RAM consumption when working with large datasets. Experience shows that on average, there is a decrease of 2 times (for datasets of several GB, this is very significant). The full justification of the reasons and examples will be given below.
Quickstart
pip install pandas-categorical
import pandas as pd
import pandas-categorical as pdc
df.astype('category') -> pdc.cat_astype(df, ...)
pd.concat() -> pdc.concat_categorical()
pd.merge() -> pdc.merge_categorical()
df.groupby(...) -> df.groupby(..., observed=True)
cat_astype
df = pd.read_csv("path_to_dataframe.csv")
SUB_DTYPES = {
'cat_col_with_int_values': int,
'cat_col_with_string_values': 'string',
'ordered_cat_col_with_bool_values': bool,
}
pdc.cat_astype(
data=df,
cat_cols=SUB_DTYPES.keys(),
sub_dtypes=SUB_DTYPES,
ordered_cols=['ordered_cat_col_with_bool_values']
)
concat_categorical
df_1 = ... # dataset with some categorical columns
df_2 = ... # dataset with some categorical columns (categories are not equals)
df_res = pdc.concat_categorical((df_1, df_2), axis=0, ignore_index=True)
merge_categorical
df_1 = ... # dataset with some categorical columns
df_2 = ... # dataset with some categorical columns (categories are not equals)
df_res = pdc.merge_categorical(df_1, df_2, on=['cat_col_1', 'cat_col_2'])
A bit of theory
The advantages are discussed in detail in the articles here, here and here.
The categorical type implies the presence of a certain set of unique values in this column, which are often repeated. By reducing the copying of identical values, it is possible to reduce the size of the column (the larger the dataset, the more likely repetitions are). By default, categories (unique values) have no order. That is, they are not comparable to each other. It is possible to make them ordered.
Pandas already has everything for this (for example, .astype(’category’)
). However, standard methods, in my opinion, require a high entry threshold and therefore are rarely used.
Let's try to outline a number of problems and ways to solve them.
1. Categorical types are easy to lose
Suppose you want to connect two datasets into one using pd.concat(..., axis=0)
. Datasets contain columns with categorical types.
If the column categories of the source datasets are different, then pandas
it does not combine multiple values, but simply resets their default type (for example, object
, int
, ...).
In other words,
$$\textcolor{red}{category1} + \textcolor{green}{category2} = object$$
$$\textcolor{red}{category1} + \textcolor{red}{category1} = \textcolor{red}{category1}$$
But we would like to observe a different behavior:
$$\textcolor{red}{category1} + \textcolor{green}{category2} = \textcolor{blue}{category3}$$
$$(\textcolor{blue}{category3} = \textcolor{red}{category1} \cup \textcolor{green}{category2})$$
As a result, you need to monitor the reduction of categories before actions such as merge
or concat
.
2. Categories type control
When you do a type conversion
df['col_name'] = df['col_name'].astype('category')
the type of categories is equal to the type of the source column. But, if you want to change the type of categories, you probably want to write something like
df['col_name'] = df['col_name'].astype('some_new_type').astype('category')
That is, you will temporarily lose the categorical type (respectively, and the advantages of memory). By the way, the usual way of control
df.dtypes
does not display information about the type of categories themselves. You will only see only category
next to the desired column.
3. Unused values
Suppose you have filtered the dataset. At the same time, the actual set of values of categorical columns could decrease, but the data type will not be changed.
This can negatively affect, for example, when working with groupby
on such a column. As a result, grouping will also occur by unused categories. To prevent this from happening, you need to specify the observed=True
parameter.
For example,
df.groupby(['cat_col_1', 'cat_col_2'], observed=True).agg('mean')
4. Ordered categories
There is a understandable instruction for converting a column type to a categorical (unordered) one
df[col] = df[col].astype('category')
But there is no similar command to convert to an ordered categorical type. There are two non-obvious ways:
df[col] = df[col].astype('category').cat.as_ordered()
Or
df[col] = df[col].astype(pd.CategoricalDtype(ordered=True))
5. Minimum copying
To process large datasets, you need to minimize the creation of copies of even its parts. Therefore, the functions from this package do the transformations in place.
6. Data storage in parquet format
When using pd.to_parquet(path, engine='pyarrow')
and pd.read_parque(path, engine='pyarrow')
categorical types of some columns can be reset to normal. To solve this problem, you can use engine='fastparquet'
.
Note 1: fastparquet
usually runs a little slower than pyarrow
.
Note 2: pyarrow
and fastparquet
cannot be used together (for example, save by one and read by the other). This can lead to data loss.
import pandas as pd
df = pd.DataFrame(
{
"Date": pd.date_range('2023-01-01', periods=10),
"Object": ["a"]*5+["b"]+["c"]*4,
"Int": [1, 1, 1, 2, 3, 1, 2, 4, 3, 2],
"Float": [1.1]*5+[2.2]*5,
}
)
print(df.dtypes)
df = df.astype('category')
print(df.dtypes)
df.to_parquet('test.parquet', engine='pyarrow')
df = pd.read_parquet('test.parquet', engine='pyarrow')
print(df.dtypes)
Output:
Date datetime64[ns]
Object object
Int int64
Float float64
dtype: object
Date category
Object category
Int category
Float category
dtype: object
Date datetime64[ns]
Object category
Int int64
Float float64
dtype: object
Examples
- Jupiter notebook with examples of problems is posted on kaggle. A copy can be found in the
examples/
folder. - Jupiter notebook with solution of problems. A copy can be found in the
examples/
folder. - Also, usage examples can be found in the tests folder.
Remarks
- Processing of categorical indexes has not yet been implemented.
- In the future, the function
pdc.join_categorical()
will appear. - The
cat_astype
function was designed so that the type information could be redundant (for example, it is specified for all possible column names in the project at once). In the future, it will be possible to set default values for this function.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pandas_categorical-1.1.0.tar.gz
.
File metadata
- Download URL: pandas_categorical-1.1.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.18 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab7adc335fb1ad316aded08a1ee37a0b7b1a6a53c5a714bebe7153e45ca8f128 |
|
MD5 | 107ac0c4d4afe7d302dde839a6273ca3 |
|
BLAKE2b-256 | cfc238885723a482d6b54aa3026578b25fd3dd460c66e8c9fe19ece522f04e9b |
File details
Details for the file pandas_categorical-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: pandas_categorical-1.1.0-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.8.18 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8dea64e7549d36b140d290ee9ae6af35844ecd9caeef8b854e87fdf8f05489cb |
|
MD5 | 163741df9b1f6360199502c2b6aebf6f |
|
BLAKE2b-256 | a093c94a83e0c4fd9ecc64ea4ff2b0b98790ec64414f79f41045869439605012 |