rqPen 3.0 (Release date: 2022-08-09) ============= Changes: * Package now has elastic net penalty, adaptive lasso, group adaptive lasso and group lasso. * New function rq.pen() which should be used for any non-group penalty. * New function rq.group.pen() should should be used for any group penalty. Group penalties now have L2 and L1 composite norms. In other words, using L2 norm with group lasso provides the typial group lasso. Previously only had L1 norm implemented and so group lasso was the same as regular lasso. See help(rq.group.pen) for more details. * New functions rq.pen.cv() and rq.group.pen.cv() which provide cross validation for rq.pen() and rq.group.pen() objects, respectively. * Function qic.select() uses information criterion to select best tuning parameters. * All functions allow for multiple values of tau and multiple values of "a", the second tuning parameter. * New algorithms implement Huber-type approximations to quantile loss, greatly improving computational efficiency. * Started deprecating many functions that were the old way to fit models. Examples include rq.lasso.fit(), rq.nc.fit(), rq.group.fit(), cv.rq.pen() and cv.rq.group.pen. Instead recommend using rq.pen(), rq.group.pen(), rq.pen.cv() and rq.group.pen.cv() * Updated code for get_coef_pen() to a fix a bug where it was returning multiple values. Thank you to Jingyi Kenneth Tay for noticing this issue. * Updated cv.rq.pen() code so that it will check to make sure that the y variable is not in matrix form. Thanks to Haixiang Zhang for providing code where y in matrix form caused problems. rqPen 2.3 (Release date: 2022-03-21) ============= Changes: * Removed functions kernel_estimates and kernel_weights in order to remove dependency on regpro. rqPen 2.2.2 (Release date: 2020-04-08) ============= Changes: * Adding warning to group lasso approaches that group penalty uses the L1 norm and thus group lasso is the same as regular lasso. Added more text to the rq.group.fit and cv.rq.group.pen help files to make clear. In addition, changed default penalty to SCAD for the group penalty functions. * Updated rq.group.fit so "a" tuning parameter for SCAD and MCP gets passed correctly to the QICD or linear programming functions. Thanks to Eric Dunipace for finding this bug. rqPen 2.2.1 (Release date: 2020-01-28) ============= Changes: * Fixed bug about how weights were assigned to training and testing sets. Thanks to Zhen Liu for finding the bug. rqPen 2.2 (Release date: 2019-12-4) ============== Changes: * Adding scale variable to rq.lasso.fit. Where the default is true. Coefficients are returned on the original scale of the predictors. * Fixed bug due to matrix objects also being inherited from class array starting in R 4.0.0. rqPen 2.1 (Release date: 2019-05-01) ============== Changes: * Fixed bug in the lp algorithm for group penalties. * Switched from using fnb to br algorithm as the default for big data problems. * Updated rq.lasso.fit to give an error message if only one predictor is provided. * Updated cross-validation to correctly use weights. Thanks to Benda Xu for finding this bug. * Made changes to improve performance of QICD algorithm. * Updated cv.rq.pen to work with QICD algorithm. rqPen 2.0 (Release date: 2017-05-16) ============== Changes: * Added function qaSIS, for quantile adaptive screening. * Major changes to fix bugs in rq.group.fit and cv.rq.group.pen * Added option (penGroups) to penalize only a subset of groups. * Updated rq.lasso.fit to choose method of "br" or "fn" based on combination of n and p. * Fixed bug so you can now use weights with cv.rq.pen. Thanks to Matt Goldman for finding the bug. rqPen 1.5.1 (Release date: 2016-11-03) ============== Changes: * Fixed bug in model_eval function, replaced fits-test_y with test_y-fits. The order matters for the check function, because it is not symmetric. rqPen 1.5 (Release date: 2016-10-21) ============== Changes: * Updated group penalty to use QICD algorithm rqPen 1.4 (Release date: 2016-04-20) ============== Changes: * Introduced penVars, which allows users to select a subset of variables to be penalized. * QICD algorithm implemented for rq.nc.fit and is default if p > 50. * QICD algorithm has not been implemented for group penalties, yet. rqPen 1.3 (Release date: 2016-02-08) ============== Changes: * Fixed bug that caused cv.rq.pen to be doing k-folds cross validation incorrectly. * QICD approach should be considered in work. Future updates will include a more vetted and faster algorithm. rqPen 1.2 (Release date: 2015-10-13) ============== Changes: * Added group penalty function with two implementations. QICD, a coordinate descent approach, and a linear programming approach. * New functions for group penalties include: groupQICD, groupQICDMultLambda and nonzero * Added coefficient functions for cv.rq.group.pen and cv.rq.pen * Added kernel based weight functions kernel_estimates and kernel_weights. These will be for future implementations that use inverse weighting as an approach for handling missing data. rqPen 1.1 (Release date: 2015-03-15) ============== Changes: * Corrected errors in SCAD and MCP penalties * Combined scad_1_deriv and scad_2_deriv into one function scad_deriv * swapped order of weights and lambda in functions rq.lasso.fit, rq.nc.fit and cv.rq.pen rqPen 1.0 (Release date: 2014-10-29) ============== * First submission.