Skip to content
View jkapila's full-sized avatar

Block or report jkapila

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jkapila/README.md

Hello Folks!!! 👋

AMB github stat

jkapila top lang - 🔭 I’m currently working on Building few ML packages from Scratch
- 🌱 I’m currently learning Bayesian (its really good for health)
- 💬 To reach me or Ask me about Data Science @ My Page
- ⚡ Fun fact: There is Order in Chaos and Chaos in Order!!

Pinned Loading

  1. Bayesian Network with Pomegranate.ipynb Bayesian Network with Pomegranate.ipynb
    1
    {
    2
      "nbformat": 4,
    3
      "nbformat_minor": 0,
    4
      "metadata": {
    5
        "kernelspec": {
  2. plotting_bayesian_network.py plotting_bayesian_network.py
    1
    # importing required libraries
    2
    import matplotlib.pyplot as plt
    3
    import matplotlib as mpl
    4
    import networkx as nx
    5
    
                  
  3. Crostab Sparsity Implementation Crostab Sparsity Implementation
    1
    import numpy as np
    2
    import pandas as pd
    3
    
                  
    4
    def crosstab_sparsity(df, clusters, numeric_bin='decile', method="fd", exhaustive=False):
    5
        """
  4. Distributive Assertive Regression in... Distributive Assertive Regression in python
    1
    import numpy as np
    2
    import pandas as pd
    3
    import statsmodels.api as sm
    4
    import matplotlib.pyplot as plt
    5