Code Monkey home page Code Monkey logo

juspy's Introduction

juspy

Maintenance MIT license Open Source? Yes! GitHub followers Twitter URL Discord

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:

  1. To test library's proper installation and working:

    import juspy
    print(juspy.__version__)
    
    from juspy import greet
    print(greet.namastey())

    Or, try greeting

    print(greet.hello())
    print(greet.ni_hao())
    print(greet.hola())
    print(greet.bonjour())
    print(greet.schatz())
    print(greet.ahlan())
    print(greet.privet())


  2. If they're producing some output, we're good to go
  3. 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)



  4. 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"])



  5. Future Release:

  6. from juspy.linear_models import LinearRegression

    from juspy.linear_models import LinearRegression as lin_reg

juspy's People

Watchers

Jaspreet Singh avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.