A creative package to move columns in Python dataframes.
Project description
MoveColumn
About
A creative package to move columns in Python dataframes.
Requirements
movecolumn requires python 3.6 or greater.
Installation
Install with pip:
pip install movecolumn
If you are using the old version of movecolumn and want to update it:
pip install --upgrade movecolumn
Examples
import movecolumn as mc
# move column b of dataframe df to first position
df1 = mc.MoveTo1(df,'b')
# move column d to 2nd position
df2 = mc.MoveTo2(df,'d')
# move column d to 3rd position
df3 = mc.MoveTo3(df,'d')
# move column e to 4th position
df4 = mc.MoveTo4(df,'e')
# move column e to 5th position
df5 = mc.MoveTo5(df,'e')
# move column c to last position
df6 = mc.MoveToLast(df,'c')
# move column d to nth position, n = 1 for left most column, 2 for second column
df7 = mc.MoveToN(df,'f',3)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
movecolumn-0.0.7.tar.gz
(6.4 kB
view details)
File details
Details for the file movecolumn-0.0.7.tar.gz
.
File metadata
- Download URL: movecolumn-0.0.7.tar.gz
- Upload date:
- Size: 6.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c252bcc8f68d11e762973c91cc403363423b71e74dc7a3477ad993f6cd1e628 |
|
MD5 | 8fdaa6e2c31ef100576b9df5ed805afa |
|
BLAKE2b-256 | e55e205e8bf8b080117cb6bbe9c19a83b7059ab875eb2cab2d89b27ab795fe12 |