A Rust-powered data cleaning and preprocessing library for pandas DataFrames. Provides fast implementations of common janitor functions like clean_names, remove_empty, get_dupes, and more. Version 0.6.1. Release cadence: irregular.
pip install janitor-rsVerified import paths — ran on the pinned version, not inferred.
Import janitor_rs, then use pipe to apply functions to a DataFrame.
Use pipe pattern instead of method chaining.
Assign the result: df = df.pipe(janitor_rs.clean_names).
Use import janitor_rs or use alias jrs.
pip install janitor-rs, then import janitor_rs
Use df.pipe(janitor_rs.clean_names)