Skip to content
View neldivad's full-sized avatar
💭
Special project in progress
💭
Special project in progress

Highlights

  • Pro

Block or report neldivad

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. Get VIF plots Get VIF plots
    1
    def get_numeric_col_list(df):
    2
        import numpy as np
    3
     
    4
        numerics = []
    5
        for col in df.columns:
  2. Derives time descriptive columns usi... Derives time descriptive columns using a datetime column. Hours, minutes, intervals
    1
    def get_hour(data, dt_col:str):
    2
        data['hour'] = data[ dt_col ].astype('datetime64[ns]').dt.hour
    3
        return data
    4
    
    
    5
    def get_minutes(data, dt_col:str):
  3. gcm-demo gcm-demo Public

    Python

  4. guide_to_ts guide_to_ts Public

    Python

  5. make seasonality box plots with week... make seasonality box plots with weekly and monthly frequency
    1
    def make_seasonality_boxplot(df, ydata, period_col=None, cdata=None, log_y=False, title='', height=800, width=800):
    2
      import pandas as pd
    3
      import numpy as np
    4
      import plotly.express as px
    5
      from plotly.subplots import make_subplots
  6. genshin_banner genshin_banner Public

    Python