Skip to content
View Zelpuz's full-sized avatar

Block or report Zelpuz

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse
Zelpuz/README.md

👋 Hi, I’m Taylor (@Zelpuz). I'm a data scientist at Venterra Realty. I build econometric forecasts using a blend of traditional models like ARIMA, State Space, etc., and machine learning including XGBoost and AutoGluon. I make my work accessible to colleagues with interactive apps via streamlit.

In the past I worked on air pollution research at the University of Toronto and Health Canada.

Pinned Loading

  1. dspf dspf Public

    Daily S&P500 forecaster

    Python 1

  2. bivapp bivapp Public

    Bivariate polar plots in Python

    Python 3

  3. Function to convert parts per billio... Function to convert parts per billion to micrograms per cubic metre.
    1
    def ppbv_to_ug_m3(
    2
        ppbv: float, temperature: float, pressure: float, molar_mass: float
    3
    ) -> float:
    4
        """
    5
        Converts a gaseous concentration in parts per billion by volume (ppbv) to micrograms
  4. Function to round to significant fig... Function to round to significant figures
    1
    import math
    2
    from decimal import Decimal
    3
    
                  
    4
    def significant_figures(number, figures, use_decimal=False):
    5
        """