An EDA and modellling assist library
Project description
juspy
juspy is a library for making EDA and Modelling in Python quick and convinient. It's built on top of:
- pandas
- numpy
- seaborn
- and many such great libraries
Our reccomended path of getting started with juspy
- Download & install Anaconda
- Open
Anaconda Prompt
- In
Anaconda Prompt
type
conda install -c conda-forge jupyterlab
- and then
pip install juspy
jupyterlab
Incase if you're having any trouble regarding installation or dependencies, kindly make sure you're using updated versions
conda update conda
conda update pip
conda update python
And now try the above steps again
Demo Notebooks:
-
To test library's proper installation and working:
import juspy print(juspy.__version__) from juspy import greet print(greet.namastey())
-
jpplot.confusion_matrix()
import numpy as np import seaborn as sns from sklearn.metrics import confusion_matrix y_true = [0, 1, 0, 1, 0, 1, 0] y_pred = [1, 1, 1, 0, 1, 0, 1] cf_matrix = confusion_matrix(y_true, y_pred) from juspy import plot as jpplot jpplot.confusion_matrix(cf_matrix)
-
jpplot.piechart()
import pandas as pd df_name = pd.read_csv("https://raw.githubusercontent.com/juspreet51/juspy/main/src/juspy/datasets/default.csv") from juspy import plot as jpplot jpplot.piechart(df_name["student"])
-
from juspy.linear_models import LinearRegression
from juspy.linear_models import LinearRegression as lin_reg
Future Release:
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
juspy-0.0.2b11.tar.gz
(4.8 kB
view details)
Built Distribution
File details
Details for the file juspy-0.0.2b11.tar.gz
.
File metadata
- Download URL: juspy-0.0.2b11.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 554bba30a5ed621535665e64310ad91d5f1690ebcda720702bd9235605b5b0cc |
|
MD5 | f2e0273b9c31186956b279f44f50d73d |
|
BLAKE2b-256 | 53f279e7e81b3eb997f9ff953b1b76268b5d2f615e828e0b50d0e2ca6405cb9e |
Provenance
File details
Details for the file juspy-0.0.2b11-py3-none-any.whl
.
File metadata
- Download URL: juspy-0.0.2b11-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12351f9db1d819c49828d2b24724d8594412a142692429b7528814410fa4dab1 |
|
MD5 | bc408a3b7a1a5282cab355a4a2ab2213 |
|
BLAKE2b-256 | c724b43ffca7a90e2a050b019dc381814c59c12ac6fc5064856b9232c9e271bb |