Skip to content
View alcheng10's full-sized avatar
Block or Report

Block or report alcheng10

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

  1. Forecasting_Electricity_Weather Forecasting_Electricity_Weather Public

    This repository contains three forecasting works related to weather and electricity.

    Jupyter Notebook

  2. BigQuery SQL to get the Adjusted Clo... BigQuery SQL to get the Adjusted Closing Price for the Last Trading Day in every Quarter (via dimension date table)
    1
    ### BigQuery SQL to get the Adjusted Closing Price for the Last Trading Day in every Quarter (via dimension date table)
    2
    ```sql
    3
    WITH 
    4
    ASX_DATA AS (
    5
      SELECT 
  3. Python (Pandas) function that create... Python (Pandas) function that creates a dimension date with workday flag
    1
    ```python
    2
    import pandas as pd
    3
    import holidays
    4
    
                  
    5
    def create_dim_date(start_date, end_date):