Python package df2onehot is to convert a pandas dataframe into a stuctured dataframe.
Project description
df2onehot
df2onehot is a Python package to convert unstructured DataFrames into structured dataframes, such as one-hot dense arrays.
⭐️ Star this repo if you like it ⭐️
Install df2onehot from PyPI
pip install df2onehot
Import df2onehot package
from df2onehot import df2onehot
Documentation pages
On the documentation pages you can find detailed information about the working of the df2onehot with many examples.
Examples
results = df2onehot(df)
# Force features (int or float) to be numeric if unique non-zero values are above percentage.
out = df2onehot(df, perc_min_num=0.8)
# Remove categorical features for which less then 2 values exists.
out = df2onehot(df, y_min=2)
# Combine two rules above.
out = df2onehot(df, y_min=2, perc_min_num=0.8)
Maintainers
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file df2onehot-1.2.0.tar.gz.
File metadata
- Download URL: df2onehot-1.2.0.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26c4b6ab930b018dd7315673ba2c497834b5f63de6af485a3e8e7354c91515e5
|
|
| MD5 |
f7244e95703a2c9ee129d1e3f5b90403
|
|
| BLAKE2b-256 |
e8e4b196046cd3d19ad243a1124fedf48c353d17e1cfe290fb1108bf65b0101b
|
File details
Details for the file df2onehot-1.2.0-py3-none-any.whl.
File metadata
- Download URL: df2onehot-1.2.0-py3-none-any.whl
- Upload date:
- Size: 14.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
665b0ea675e170decdce717ded169747ea1b91b5aa15eca64434d8de2ecc9f81
|
|
| MD5 |
a02bccf4843125cbea2a4996cfaf6d62
|
|
| BLAKE2b-256 |
2f508375e6831acbdfed2368d777c4ba6d8ac4756bec89078b9bce3a8da025c7
|