Skip to content

Instantly share code, notes, and snippets.

View nova-land's full-sized avatar
💢

NovaLand nova-land

💢
  • Earth
View GitHub Profile
@nova-land
nova-land / nsandi.py
Last active August 2, 2023 13:12
NS&I Premium Bonds Probability Calculator
# Account Information
balance = 50000
# Prize Table & Odds
odds_per_pound = 1 / 22000
# Prize Table from official webpage
# https://www.nsandi.com/get-to-know-us/monthly-prize-allocation
prizes = {
1000000: 2,
@nova-land
nova-land / adaptive-normalization.py
Created February 4, 2023 23:30 — forked from markcutajar/adaptive-normalization.py
Adaptive Normalization: A novel data normalization approach for non-stationary time series
"""
This code attempts to reproduce:
Adaptive Normalization: A novel data normalization approach for non-stationary time series
Conference: International Joint Conference on Neural Networks, IJCNN 2010, Barcelona, Spain, 18-23 July, 2010
Eduardo Ogasawara et Al.
"""