A Data science library for data science / data analysis teams
Project description
Dataramp
Dataramp is a Python library designed to streamline data science and data analysis workflows. It offers a collection of utility functions and tools tailored to assist data science teams in various aspects of their projects.
Key Features
1. Project Management
- Simplify project setup with a single function call to generate a standardized project directory structure.
- Organize datasets, model outputs, scripts, notebooks, and more in predefined folders for better project management.
2. Model Saving and Loading
- Save and load trained machine learning models effortlessly.
- Supports multiple formats including joblib, pickle, and keras for compatibility with diverse model types.
3. Data Exploration and Visualization
- Explore datasets and generate summary statistics with ease.
- Visualize feature distributions and missing data patterns to gain insights into your data.
4. Feature Engineering
- Handle missing data and outliers effectively.
- Drop missing columns based on user-defined thresholds and detect outliers using Tukey's Interquartile Range (IQR) method.
5. Model Evaluation and Cross-Validation
- Evaluate model performance with comprehensive metrics such as accuracy, F1-score, precision, and recall.
- Generate classification reports and support cross-validation for robust model evaluation.
6. Scaling and Normalization
- Scale and normalize data using min-max scaling and z-score normalization techniques.
- Bring features to a common scale for improved model performance.
By providing a range of functionalities, Dataramp aims to enhance productivity and efficiency in data science projects, empowering teams to focus on deriving meaningful insights from their data.
Quickstart
To use dataramp in your data science projects, you can install it via pip:
pip install dataramp
Once installed, you can import the library and explore its functionality:
import dataramp as dr # import the dataramp library
import pandas as pd
# To create your project with help of dataramp
from dataramp.create_project import create_project
df = pd.read_csv("data/iris.csv") # load iris dataset
df.head() # Snapshot of your df
cats = dh.eda.get_cat_vars(df)
print(cats)
num_var = dh.eda.get_num_vars(df)
print(num_var)
cat_count = dh.eda.get_cat_counts(df)
cat_count
missing = dh.eda.display_missing(df)
missing
Lins
Project: https://github.com/kimxons/dataramp PyPi: https://pypi.org/project/dataramp/
Documentation
For detailed usage instructions and API reference, please refer to the official documentation at https://dataramp-docs.example.com
We use SemVer for versioning
Contribution
dataramp is an open-source project, and we welcome contributions from the data science community. If you find a bug, have a feature request, or want to contribute improvements, please open an issue or submit a pull request on our GitHub repository at https://github.com/kimxons/dataramp.
License
dataramp is licensed under the MIT License. See the LICENSE file for more details.
Contact
If you have any questions or feedback, feel free to reach out to our support team at dev.kitonga@gmail.com or join our community forum at https://community.dataramp.com. We are here to assist you in making your data science journey smooth and successful!
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 dataramp-1.0.1.dev171.tar.gz
.
File metadata
- Download URL: dataramp-1.0.1.dev171.tar.gz
- Upload date:
- Size: 13.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a18e922a55860c50400ccc2c8da4f5826ee17a77978c9689932671180a0b0bc |
|
MD5 | efb790f4f1fec3e4b592226ae7631b0b |
|
BLAKE2b-256 | 47aeb9b61ad71316f1995cb3954fcfdd74246af9944bb99ef05c89ecec130509 |
File details
Details for the file dataramp-1.0.1.dev171-py2.py3-none-any.whl
.
File metadata
- Download URL: dataramp-1.0.1.dev171-py2.py3-none-any.whl
- Upload date:
- Size: 14.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c3c761c2246b6d3578326461aa1e50e7cdb248b98fb013538331b7a4a8bf060 |
|
MD5 | a52189298dcae9a6e08eac27fccdc7d7 |
|
BLAKE2b-256 | 768e1c8fa06ec6ae64048681597ed6c23f43645d01acf87a716e11b174b44a83 |