Announcing dshelper-ayushlokre v0.1.0 🚀 Over time, I noticed that in almost every data science project, I repeat the same small setup steps — checking for missing values, scaling the data, splitting the data into train/test sets, and running the same evaluation metrics. None of these is difficult, but they add friction and clutter notebooks with boilerplate. So I built dshelper — a lightweight helper library that focuses on the boring but necessary parts of the workflow, so analysis stays fast, clear, and consistent. It’s not trying to replace pandas, sklearn, or any big framework. It’s simply a productivity layer on top of them. What dshelper does: • Shows missing value statistics with an optional visual summary • Generates correlation insights and clean heatmaps quickly • Allows train/test split + scaling in one simple call • Auto-detects classification vs regression and evaluates accordingly • Works directly with pandas DataFrames and sklearn models you already use No new syntax to learn. No heavy abstractions. Just small helpers that save minutes repeatedly — which adds up. Why I built it: • To reduce repetitive code in notebooks • To make early analysis cleaner and less error-prone • To help myself (and hopefully others) stay focused on insights and modeling • To build something small, open-source, and genuinely useful This is just v0.1.0 — a starting point. I want to grow it based on real needs. Install: pip install dshelper-ayushlokre Quick usage: from dshelper_ayushlokre import missing, preprocessing # Missing value report report = missing.analyze(df, show_plot=True) # Train/test split + scaling X_train, X_test, y_train, y_test = preprocessing.split_and_scale(X, y, test_size=0.2, scaler='standard') Links: -PyPI → https://lnkd.in/dr7a5kMU -GitHub → https://lnkd.in/dG7juciX If you try it, I’d genuinely appreciate: • A ⭐ on GitHub • Feedback/suggestions • Feature requests • Or PR contributions #Python #DataScience #MachineLearning #OpenSource #Pandas #ScikitLearn #PyPI
Great job 👏🏻
Cool
Awesome.
Well Done 🎊🎉💐
Nice one
Great work Ayush ! 🔥
Looks useful!
I love little helper tools like this that save time!