Skip to content

Instantly share code, notes, and snippets.

View mdancho84's full-sized avatar

Matt Dancho mdancho84

View GitHub Profile
@mdancho84
mdancho84 / core-strategy-1-volatility-targeting.ipynb
Created February 20, 2024 00:08
Core Strategy 1: Volatility Targeting
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mdancho84
mdancho84 / modeltime_trelliscope.R
Created April 7, 2022 20:21
Forecasting & Time Series Plotting at Scale
# BUSINESS SCIENCE
# NEW TRELLISCOPE INTEGRATION ----
# * AVAILABLE IN TIMETK 2.8.0 AND MODELTIME 1.2.0
# LIBRARIES ----
library(tidymodels)
library(modeltime)
library(tidyverse)
library(timetk)
@mdancho84
mdancho84 / data_science_capability_rating.R
Created April 19, 2019 15:37
Code for Data Science Capability Rating Chart in 6 Reasons to use R for Data Science. https://www.business-science.io/business/2017/12/27/six-reasons-to-use-R-for-business.html
library(tidyquant)
library(ggrepel)
data_apps <- tribble(
~application, ~business_capability, ~ease_of_learning, ~trend, ~cost,
"R", 10, 4, 10, "Free",
"Python", 7, 4, 10, "Free",
"Excel", 4, 10, 7, "Low",
"Tableau", 6, 7, 6, "Low",
"PowerBI", 5, 8, 6, "Low",