Quantile Regression workflows workshop

This workshop is organized by "Orlando Machine Learning and Data Science Meetup". (Planned to happen on 2019-02-23 at 15:00.)

The goals of this workshop are to introduce the theoretical background of Quantile Regression (QR), to demonstrate QR's practical (and superior) abilities to deal with "real life" time series data, and to teach how to rapidly create QR workflows using Mathematica or R.

The workshop has a dedicated GitHub project; see:
https://github.com/antononcube/MathematicaVsR/tree/master/Projects/QuantileRegressionWorkflows .

Here is an example workflow with an R pipeline:

devtools::install_github("antononcube/QRMon-R")
library(QRMon)

qrmon <-
     QRMonUnit( dfTemperatureData ) %>%
     QRMonEchoDataSummary() %>%
     QRMonQuantileRegression( df = 16, degree = 3, quantiles = seq(0.1,0.9,0.2) ) %>%
     QRMonPlot( datePlotQ = TRUE, dateOrigin = "1900-01-01" )
1 Like

Movies of the presentation/workshop:

https://www.youtube.com/watch?v=PP2Ib6yx560 (Part 1);

https://www.youtube.com/watch?v=se819HqpiLE (Part 2).

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.