Publications by R on Redwall Analytics

Introducing the Redwall IRS SOI Tax Dashboard

05.08.2021

Introduction The IRS SOI Tax Statistics is a fabulous seemingly undiscovered data set, which should be frequently referenced in any discussion about income and taxes. We often see median income represented by Census data, but have always been skeptical that most people know their exact income in any given year or would report it according to a un...

12089 sym 8 img

Introducing the Redwall ‘Red Flag’ Explorer with New Constructs Data

08.08.2021

Click to see R set-up code # Libraries if(!require("pacman")) { install.packages("pacman") } pacman::p_load( data.table, scales, ggplot2, plotly, DT) # Set knitr params knitr::opts_chunk$set( comment = NA, fig.width = 12, fig.height = 8, out.width = '100%' ) # Load annual data only path <- "~/Desktop/David/Projects/new_...

10567 sym R (6395 sym/4 pcs) 2 img

When Yahoo Finance doesn’t have de-listed tickers needed

18.08.2021

Click to see R set-up code # Libraries if(!require("pacman")) { install.packages("pacman") } pacman::p_load( data.table ) # Set knitr params knitr::opts_chunk$set( comment = NA, fig.width = 12, fig.height = 8, out.width = '100%' ) Introduction As we discussed in our last post Introducing the Redwall ‘Red Flag’ Explorer with ...

7336 sym R (6497 sym/8 pcs)

Exploring Stock Market Listing Mortality since 1986

28.08.2021

Click to see R set-up code # Libraries if(!require("pacman")) { install.packages("pacman") } pacman::p_load( data.table, re2, scales, ggplot2, plotly, DT, patchwork, survival, ggfortify, scales) # Set knitr params knitr::opts_chunk$set( comment = NA, fig.width = 12, fig.height = 8, out.width = '100%' ) NOTE: The ...

14403 sym R (7868 sym/9 pcs) 4 img