Skip to content
View Shogun89's full-sized avatar
  • New York, New York

Block or report Shogun89

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. generator_months.py generator_months.py
    1
    # -*- coding: utf-8 -*-
    2
    """
    3
    Created on Thu Sep 24 20:37:19 2020
    4
    5
    @author: ryhow
  2. IAM961 IAM961 Public

    Jupyter Notebook

  3. templating_queries.py templating_queries.py
    1
    import pandas as pd
    2
    import os
    3
    import mysql.connector 
    4
    
                  
    5
    def generate_dates():
  4. query_mapping query_mapping
    1
    import pandas as pd
    2
    import os
    3
    import mysql.connector
    4
    def basic_data(data):
    5
        query= data[0]
  5. poisson_cdf.py poisson_cdf.py
    1
    import math 
    2
    import functools
    3
    def poisson(k, lamb):
    4
    ### PDF of Poisson
    5
        if k >= 0 and type(k) == int: 
  6. uniform_cdf.py uniform_cdf.py
    1
    def uniform(a,b,x):
    2
      ### Define PDF of uniform density
    3
         
    4
        if x >= a and x <= b: 
    5
            return 1/(b-a)