Special project in progress
Python programmer. Developing software for music.
- Kuala Lumpur
- https://medium.com/@just_neldivad
Highlights
- Pro
Pinned Loading
-
Get VIF plots
Get VIF plots 1def get_numeric_col_list(df):
2import numpy as np
34numerics = []
5for col in df.columns:
-
Derives time descriptive columns usi...
Derives time descriptive columns using a datetime column. Hours, minutes, intervals 1def get_hour(data, dt_col:str):
2data['hour'] = data[ dt_col ].astype('datetime64[ns]').dt.hour
3return data
45def get_minutes(data, dt_col:str):
-
-
-
make seasonality box plots with week...
make seasonality box plots with weekly and monthly frequency 1def make_seasonality_boxplot(df, ydata, period_col=None, cdata=None, log_y=False, title='', height=800, width=800):
2import pandas as pd
3import numpy as np
4import plotly.express as px
5from plotly.subplots import make_subplots
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.