A basic Python data analysis library.
Project description
DataAnalysts Package
DataAnalysts is a Python library designed to simplify and streamline data analysis tasks, including data cleaning, transformation, and visualization. Whether you're a student, a data analyst, or a researcher, this package is built to handle datasets efficiently and interactively.
🚀 Key Features
- 🧹 Data Cleaning: Handle missing values, remove duplicates, and preprocess raw datasets.
- 🔄 Data Transformation: Scale, normalize, and encode datasets seamlessly.
- 📊 Data Visualization: Generate professional plots (Histogram, Line Plot, Scatter Plot, etc.) interactively.
- 📥 Data Loading: Easily load datasets from CSV and Excel files.
- 🛡️ Error Handling: Robust exception handling with clear error messages.
- 🎮 Interactive Tools: Interactive cleaning, transformation, and plotting tools.
🛠️ Installation Steps
1. Install the Package from PyPI
To use the library in Google Colab or your local environment, install it directly from PyPI:
!pip install dataanalysts
Usage Examples
1. Import the Library
import dataanalysts as da
import pandas as pd
2. Load Data
df = da.csv('data.csv')
df_excel = da.excel('data.xlsx', sheet_name='Sheet1')
3. Data Cleaning
df_cleaned = da.clean(df)
df_interactive_clean = da.interactive_clean(df)
4. Data Transformation
df_transformed = da.transform(df, strategy='standard')
df_interactive_transform = da.interactive_transform(df)
5. Data Visualization
da.histogram(df, column='age')
da.barchart(df, x_col='city', y_col='population')
da.interactive_plot(df)
Contributing
Contributions are welcome! Please submit a pull request via our GitHub Repository.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Support
If you encounter any issues, feel free to open an issue on our GitHub Issues page.
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 dataanalysts-0.1.0.tar.gz.
File metadata
- Download URL: dataanalysts-0.1.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bb54ab4b151069ec39dd2a0b8408ff9485b5155d14647f4cb230d6ccef04cb3
|
|
| MD5 |
c346373cdf807fbbdf23114875e412c2
|
|
| BLAKE2b-256 |
a5592023a08a527bd53710a8a72d5f5e9905d071da1e06a1f3e17816e85d9af5
|
File details
Details for the file dataanalysts-0.1.0-py3-none-any.whl.
File metadata
- Download URL: dataanalysts-0.1.0-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a886f01e76fe116a970c5c26445916e81d4c0508178282adc3ce034610abe39
|
|
| MD5 |
48b3ad1e2e1f9313e2af77f77a38e631
|
|
| BLAKE2b-256 |
fcf6b0bb43be100d3c18839df26262ec4847119e3d5572ebf5847944680eb6b0
|