This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Terms of Service – DangleVision | |
| **Last updated:** [16 February 2026] | |
| ## 1. Acceptance | |
| By using the DangleVision website and/or app, you agree to these terms. | |
| ## 2. Use of the service | |
| DangleVision is provided for personal, non-commercial hockey training. You may not redistribute, resell, or use it for commercial purposes without permission. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Baseball Dashboard - Complete Code Examples | |
| For embedding in WordPress article via GitHub Gist | |
| """ | |
| # ============================================================================ | |
| # EXAMPLE 1: Testing pybaseball | |
| # ============================================================================ | |
| import pybaseball as pyb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Python 3 code | |
| import matplotlib.pyplot as mpl | |
| import scipy.cluster.hierarchy as sch,random | |
| import numpy as np | |
| import pandas as pd | |
| # Now, take corMat and covMat generated from R, input into Marcos' Python, and check output is the same... | |
| col_list = ["IGV.Close", "TLT.Close", "IAU.Close", "IYR.Close"] | |
| corr = pd.read_csv("corMat_23072021.csv", usecols=col_list) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # R code | |
| corMat <- read.csv("corMat_23072021.csv")[,-1] | |
| covMat <- read.csv("covMat_23072021.csv")[,-1] | |
| clustOrder <- hclust(dist(corMat), method = 'single')$order | |
| clustOrder | |
| # Plot Dendogram for some visualization of the order | |
| clust <- hclust(dist(corMat), method = 'single') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: R-CMD-check | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| title: "Jane_Street_Kaggle" | |
| author: "Jasen Mackie" | |
| date: "18/12/2020" | |
| output: html_document | |
| --- | |
| ```{r setup, include=FALSE} | |
| require(data.table) | |
| require(ggplot2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Simple MACD signal strategy | |
| # | |
| # blotter v 0.10.0 | |
| # quantstrat v 0.9.1739 | |
| # FinancialInstrument v 1.2.0 | |
| # Rblpapi v 0.3.4 | |
| # | |
| # | |
| # Author: Jasen | |
| ############################################################################### |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "math.h" | |
| #include "stdio.h" | |
| double AttackerSuccessProbability(double q, int z) | |
| { | |
| double p = 1.0 - q; | |
| double lambda = z * (q / p); | |
| double sum = 1.0; | |
| int i; | |
| int k; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| title: A replication of the Practical Application section in 'The Probability of Backtest | |
| Overfitting' - Bailey et al. | |
| output: | |
| html_notebook: | |
| # html_document: | |
| # df_print: paged | |
| --- | |
| In their paper "The Probability of Backtest |
NewerOlder