1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592
|
bandwidth.rq <- function(p, n, hs = TRUE, alpha = 0.05)
{
# Bandwidth selection for sparsity estimation two flavors:
# Hall and Sheather(1988, JRSS(B)) rate = O(n^{-1/3})
# Bofinger (1975, Aus. J. Stat) -- rate = O(n^{-1/5})
# Generally speaking, default method, hs=TRUE is preferred.
x0 <- qnorm(p)
f0 <- dnorm(x0)
if(hs)
n^(-1/3) * qnorm(1 - alpha/2)^(2/3) *
((1.5 * f0^2)/(2 * x0^2 + 1))^(1/3)
else n^-0.2 * ((4.5 * f0^4)/(2 * x0^2 + 1)^2)^ 0.2
}
plot.rq.process <- function(x, nrow = 3, ncol = 2, ...)
{
## Function to plot estimated quantile regression process
tdim <- dim(x$sol)
p <- tdim[1] - 3
m <- tdim[2]
oldpar <- par(no.readonly=TRUE)
par(mfrow = c(nrow, ncol))
ylab <- dimnames(x$sol)[[1]]
for(i in 1:p) {
plot(x$sol[1,], x$sol[3 + i, ], xlab = "tau",
ylab = ylab[3 + i], type = "l")
}
par(oldpar)
}
print.rqs <- function (x, ...)
{
if (!is.null(cl <- x$call)) {
cat("Call:\n")
dput(cl)
}
coef <- coef(x)
cat("\nCoefficients:\n")
print(coef, ...)
rank <- x$rank
nobs <- nrow(residuals(x))
p <- nrow(coef)
rdf <- nobs - p
cat("\nDegrees of freedom:", nobs, "total;", rdf, "residual\n")
if (!is.null(attr(x, "na.message")))
cat(attr(x, "na.message"), "\n")
invisible(x)
}
"print.rq" <-
function(x, ...)
{
if(!is.null(cl <- x$call)) {
cat("Call:\n")
dput(cl)
}
coef <- coef(x)
cat("\nCoefficients:\n")
print(coef, ...)
rank <- x$rank
nobs <- length(residuals(x))
if(is.matrix(coef))
p <- dim(coef)[1]
else p <- length(coef)
rdf <- nobs - p
cat("\nDegrees of freedom:", nobs, "total;", rdf, "residual\n")
if(!is.null(attr(x, "na.message")))
cat(attr(x, "na.message"), "\n")
invisible(x)
}
print.summary.rqs <- function(x, ...) {
lapply(x, print.summary.rq)
invisible(x)
}
"print.summary.rq" <-
function(x, digits = max(5, .Options$digits - 2), ...)
{
cat("\nCall: ")
dput(x$call)
coef <- x$coef
## df <- x$df
## rdf <- x$rdf
tau <- x$tau
cat("\ntau: ")
print(format(round(tau,digits = digits)), quote = FALSE, ...)
cat("\nCoefficients:\n")
print(format(round(coef, digits = digits)), quote = FALSE, ...)
invisible(x)
}
"rq" <-
function (formula, tau = 0.5, data, subset, weights, na.action, method = "br",
model = TRUE, contrasts = NULL, ...)
{
call <- match.call()
mf <- match.call(expand.dots = FALSE)
m <- match(c("formula", "data", "subset", "weights", "na.action"), names(mf), 0)
mf <- mf[c(1,m)]
mf$drop.unused.levels <- TRUE
mf[[1]] <- as.name("model.frame")
mf <- eval.parent(mf)
if(method == "model.frame")return(mf)
mt <- attr(mf, "terms")
weights <- as.vector(model.weights(mf))
tau <- sort(unique(tau))
eps <- .Machine$double.eps^(2/3)
if (any(tau == 0)) tau[tau == 0] <- eps
if (any(tau == 1)) tau[tau == 1] <- 1 - eps
Y <- model.response(mf)
if(method == "sfn"){
if(requireNamespace("MatrixModels", quietly = TRUE)
&& requireNamespace("Matrix", quietly = TRUE)){
X <- MatrixModels::model.Matrix(mt, data, sparse = TRUE)
vnames <- dimnames(X)[[2]]
X <- as(X ,"matrix.csr")
mf$x <- X
}
}
else{
X <- model.matrix(mt, mf, contrasts)
vnames <- dimnames(X)[[2]]
}
Rho <- function(u,tau) u * (tau - (u < 0))
if (length(tau) > 1) {
if (any(tau < 0) || any(tau > 1))
stop("invalid tau: taus should be >= 0 and <= 1")
coef <- matrix(0, ncol(X), length(tau))
rho <- rep(0, length(tau))
if(!(method %in% c("ppro","qfnb","pfnb"))){
fitted <- resid <- matrix(0, nrow(X), length(tau))
for(i in 1:length(tau)){
z <- {if (length(weights))
rq.wfit(X, Y, tau = tau[i], weights, method, ...)
else rq.fit(X, Y, tau = tau[i], method, ...)
}
coef[,i] <- z$coefficients
resid[,i] <- z$residuals
rho[i] <- sum(Rho(z$residuals,tau[i]))
fitted[,i] <- Y - z$residuals
}
taulabs <- paste("tau=",format(round(tau,3)))
dimnames(coef) <- list(vnames, taulabs)
dimnames(resid)[[2]] <- taulabs
fit <- z
fit$coefficients <- coef
fit$residuals <- resid
fit$fitted.values <- fitted
if(method == "lasso") class(fit) <- c("lassorqs","rqs")
else if(method == "scad") class(fit) <- c("scadrqs","rqs")
else class(fit) <- "rqs"
}
else if(method == "pfnb"){ # Preprocessing in fortran loop
fit <- rq.fit.pfnb(X, Y, tau)
class(fit) = "rqs"
}
else if(method == "qfnb"){ # simple fortran loop method
fit <- rq.fit.qfnb(X, Y, tau)
class(fit) = ifelse(length(tau) == 1,"rq","rqs")
}
else if(method == "ppro"){ # Preprocessing method in R
fit <- rq.fit.ppro(X, Y, tau, ...)
class(fit) = ifelse(length(tau) == 1,"rq","rqs")
}
}
else{
process <- (tau < 0 || tau > 1)
if(process && method != "br")
stop("when tau not in [0,1] method br must be used")
fit <- {
if(length(weights))
rq.wfit(X, Y, tau = tau, weights, method, ...)
else rq.fit(X, Y, tau = tau, method, ...)
}
if(process)
rho <- list(tau = fit$sol[1,], rho = fit$sol[3,])
else {
if(length(dim(fit$residuals)))
dimnames(fit$residuals) <- list(dimnames(X)[[1]],NULL)
rho <- sum(Rho(fit$residuals,tau))
}
if(method == "lasso") class(fit) <- c("lassorq","rq")
else if(method == "scad") class(fit) <- c("scadrq","rq")
else class(fit) <- ifelse(process, "rq.process", "rq")
}
fit$na.action <- attr(mf, "na.action")
fit$formula <- formula
fit$terms <- mt
fit$xlevels <- .getXlevels(mt,mf)
fit$call <- call
fit$tau <- tau
fit$weights <- weights
fit$residuals <- drop(fit$residuals)
fit$rho <- rho
fit$method <- method
fit$fitted.values <- drop(fit$fitted.values)
attr(fit, "na.message") <- attr(m, "na.message")
if(model) fit$model <- mf
fit
}
"rq.fit" <-
function(x, y, tau = 0.5, method = "br", ...)
{
if(length(tau) > 1 && method != "ppro") {
tau <- tau[1]
warning("Multiple taus not allowed in rq.fit: solution restricted to first element")
}
fit <- switch(method,
fn = rq.fit.fnb(x, y, tau = tau, ...),
fnb = rq.fit.fnb(x, y, tau = tau, ...),
fnc = rq.fit.fnc(x, y, tau = tau, ...),
sfn = rq.fit.sfn(x, y, tau = tau, ...),
conquer = rq.fit.conquer(x, y, tau = tau, ...),
pfn = rq.fit.pfn(x, y, tau = tau, ...),
pfnb = rq.fit.pfnb(x, y, tau = tau, ...),
ppro= rq.fit.ppro(x, y, tau = tau, ...),
br = rq.fit.br(x, y, tau = tau, ...),
lasso = rq.fit.lasso(x, y, tau = tau, ...),
scad = rq.fit.scad(x, y, tau = tau, ...),
{
what <- paste("rq.fit.", method, sep = "")
if(exists(what, mode = "function"))
(get(what, mode = "function"))(x, y, ...)
else stop(paste("unimplemented method:", method))
}
)
fit$fitted.values <- y - fit$residuals
fit$contrasts <- attr(x, "contrasts")
fit
}
"rqs.fit"<-
function(x, y, tau = 0.5, tol = 0.0001)
{
# function to compute rq fits for multiple y's
x <- as.matrix(x)
p <- ncol(x)
n <- nrow(x)
m <- ncol(y)
z <- .Fortran("rqs",
as.integer(n),
as.integer(p),
as.integer(m),
as.integer(n + 5),
as.integer(p + 2),
as.double(x),
as.double(y),
as.double(tau),
as.double(tol),
flag = integer(m),
coef = double(p * m),
resid = double(n),
integer(n),
double((n + 5) * (p + 2)),
double(n))
if(sum(z$flag)>0){
if(any(z$flag)==2)
warning(paste(sum(z$flag==2),"out of",m,
"BS replications have near singular design"))
if(any(z$flag)==1)
warning(paste(sum(z$flag==1),"out of",m,"may be nonunique"))
}
return(t(matrix(z$coef, p, m)))
}
"formula.rq" <-
function (x, ...)
{
form <- x$formula
if (!is.null(form)) {
form <- formula(x$terms)
environment(form) <- environment(x$formula)
form
}
else formula(x$terms)
}
"predict.rq" <-
function (object, newdata, type = "none", interval = c("none",
"confidence"), level = 0.95, na.action = na.pass, ...)
{
if (missing(newdata))
return(napredict(object$na.action, object$fitted))
else {
tt <- terms(object)
Terms <- delete.response(tt)
m <- model.frame(Terms, newdata, na.action = na.action,
xlev = object$xlevels)
if (!is.null(cl <- attr(Terms, "dataClasses")))
.checkMFClasses(cl, m)
X <- model.matrix(Terms, m, contrasts.arg = object$contrasts)
}
pred <- drop(X %*% object$coefficients)
dots <- list(...)
if (length(dots$se))
boot <- (dots$se == "boot")
else boot <- FALSE
if (length(dots$mofn))
mofn <- dots$mofn
interval <- match.arg(interval)
if (!interval == "none") {
if (interval == "confidence") {
if (type == "percentile") {
if (boot) {
if(exists("mofn")) {# Rescale and recenter!!
n <- length(object$fitted)
factor <- ifelse(mofn < n, sqrt(mofn/n), 1)
XB <- X %*% t(summary(object, cov = TRUE, ...)$B)/factor
pl <- apply(XB, 1, function(x) quantile(x, (1 - level)/2))
pu <- apply(XB, 1, function(x) quantile(x, 1 - (1 - level)/2))
pl <- pred + factor * (pl - pred)
pu <- pred + factor * (pu - pred)
}
else {
XB <- X %*% t(summary(object, cov = TRUE, ...)$B)
pl <- apply(XB, 1, function(x) quantile(x, (1 - level)/2))
pu <- apply(XB, 1, function(x) quantile(x, 1 - (1 - level)/2))
}
pred <- cbind(pred, pl, pu)
colnames(pred) <- c("fit", "lower", "higher")
}
else stop("Percentile method requires se = \"boot\".")
}
else if (type == "direct") {
if (boot)
stop("Direct method incompatible with bootstrap covariance matrix estimation")
Z <- rq.fit(object$x, object$y, tau = -1)$sol
V <- summary(object, cov = TRUE, ...)
df <- V$rdf
tfrac <- qt(1 - (1 - level)/2, df)
Vun <- V$cov * V$scale^2
tau <- object$tau
bn <- tfrac * sqrt(diag(X %*% Vun %*% t(X)))
tauU <- pmin(tau + bn, 1 - 1/df)
tauL <- pmax(tau - bn, 1/df)
tauhat <- Z[1, ]
yhat <- X %*% Z[-(1:3), ]
n <- nrow(X)
pl <- yhat[cbind(1:n, cut(tauL, tauhat, label = FALSE))]
pu <- yhat[cbind(1:n, cut(tauU, tauhat, label = FALSE))]
pred <- cbind(pred, pl, pu)
colnames(pred) <- c("fit", "lower", "higher")
}
else {
V <- summary(object, cov = TRUE, ...)
df <- V$rdf
tfrac <- qt((1 - level)/2, df)
sdpred <- sqrt(diag(X %*% V$cov %*% t(X)))
pred <- cbind(pred, pred + tfrac * sdpred %o%
c(1, -1))
colnames(pred) <- c("fit", "lower", "higher")
}
}
else stop(paste("No interval method for", interval))
}
pred
}
"predict.rqs" <-
function (object, newdata, type = "Qhat", stepfun = FALSE, na.action = na.pass, ...)
{
## with all defaults
if(missing(newdata) && !stepfun && (type == "Qhat"))
return(napredict(object$na.action, object$fitted))
## otherwise
tt <- delete.response(terms(object))
m <- if(missing(newdata)) model.frame(object) else model.frame(tt, newdata,
na.action = na.action, xlev = object$xlevels)
if(!is.null(cl <- attr(tt, "dataClasses"))) .checkMFClasses(cl, m)
X <- model.matrix(tt, m, contrasts.arg = object$contrasts)
pred <- t(X %*% object$coefficients)
taus <- object$tau
M <- NCOL(pred)
## return stepfun or matrix
if(stepfun) {
if(type == "Qhat"){
pred <- rbind(pred[1,],pred)
if(M > 1)
f <- apply(pred, 2, function(y) stepfun(taus, y))
else
f <- stepfun(taus, c(pred[1,1], pred[,1]))
}
else if(type == "Fhat"){
taus <- c(taus[1], taus)
if(M > 1)
f <- apply(pred, 2, function(y) {
o <- order(y)
stepfun(y[o], taus[c(1,o)])})
else
f <- stepfun(pred[,1],taus)
}
else stop("Stepfuns must be either 'Qhat' or 'Fhat'\n")
return(f)
}
else if(type == "fhat"){
akjfun <- function(z, p, d = 10, g = 300, ...) {
mz <- sum(z * p)
sz <- sqrt(sum((z - mz)^2 * p))
hz <- seq(mz - d * sz, mz + d * sz, length = g)
fz <- akj(z, hz, p = p, ...)$dens
approxfun(hz, fz)
}
p <- diff(taus)
if (M > 1)
f <- apply(pred[-1, ], 2, function(z) akjfun(z, p, ...))
else akjfun(pred[, 1], p, ...)
return(f)
}
else return(t(pred))
}
"predict.rq.process" <-
function (object, newdata, type = "Qhat", stepfun = FALSE, na.action = na.pass, ...)
{
if(missing(newdata) && !stepfun && (type == "Qhat"))
return(napredict(object$na.action, object$fitted))
tt <- terms(object)
Terms <- delete.response(tt)
m <- model.frame(Terms, newdata, na.action = na.action,
xlev = object$xlevels)
if (!is.null(cl <- attr(Terms, "dataClasses"))) .checkMFClasses(cl, m)
X <- model.matrix(Terms, m, contrasts.arg = object$contrasts)
if(!length(X)) X <- rep(1, NROW(object$dsol)) # intercept only hack
pred <- t(X %*% object$sol[-(1:3),, drop = FALSE])
taus <- object$sol[1,]
M <- NCOL(pred)
if(stepfun){
if(type == "Qhat"){
pred <- rbind(pred[1,], pred)
if(M > 1)
f <- apply(pred,2,function(y) stepfun(taus, y))
else
f <- stepfun(taus, pred[,1])
}
else if(type == "Fhat"){
taus <- c(taus[1],taus)
if(M > 1)
f <- apply(pred,2,function(y) stepfun(y,taus))
else
f <- stepfun(pred[,1],taus)
}
else stop("Stepfuns must be either 'Qhat' or 'Fhat'")
return(f)
}
else if(type == "fhat"){
akjfun <- function(z, p, d = 10, g = 300, ...){
mz <- sum(z * p)
sz <- sqrt(sum((z - mz)^2 * p))
hz <- seq(mz - d * sz, mz+ d * sz, length = g)
fz <- akj(z, hz, p = p, ...)$dens
approxfun(hz,fz)
}
p <- diff(taus)
if(M > 1)
f <- apply(pred[-1,], 2, function(z) akjfun(z, p, ...))
else
f = akjfun(pred[,1], p, ...)
return(f)
}
else return(t(pred))
}
"rearrange" <- function (f, xmin, xmax)
# Revised Version September 11 2007.
{
if (is.list(f))
lapply(f, rearrange)
else {
if (!is.stepfun(f))
stop("Only stepfuns can be rearranged.\n")
call <- attributes(f)$call;
right <- call[match("right",names(call))]=="TRUE()"
x <- knots(f)
n <- length(x)
if(missing(xmin)) xmin = x[1]
if(missing(xmax)) xmax = x[n]
x <- x[(x >= xmin) & (x <= xmax)]
x <- c(xmin, x, xmax)
n <- length(x)
y <- f(x)
o <- ifelse(rep(right,n-1), order(y[-1])+1, order(y[-n]))
x <- cumsum(c(x[1], diff(x)[o - right]))
y <- y[o]
y <- c(y[1], y, max(y))
stepfun(x, y, right = right)
}
}
# Function to compute regression quantiles using original simplex approach
# of Barrodale-Roberts/Koenker-d'Orey. There are several options.
# The options are somewhat different than those available for the Frisch-
# Newton version of the algorithm, reflecting the different natures of the
# problems typically solved. Succintly BR for "small" problems, FN for
# "large" ones. Obviously, these terms are conditioned by available hardware.
#
# Basically there are two modes of use:
# 1. For Single Quantiles:
#
# if tau is between 0 and 1 then only one quantile solution is computed.
#
# if ci = FALSE then just the point estimate and residuals are returned
# If the column dimension of x is 1 then ci is set to FALSE since
# since the rank inversion method has no proper null model.
# if ci = TRUE then there are two options for confidence intervals:
#
# 1. if iid = TRUE we get the original version of the rank
# inversion intervals as in Koenker (1994)
# 2. if iid = FALSE we get the new version of the rank inversion
# intervals which accounts for heterogeneity across
# observations in the conditional density of the response.
# The theory of this is described in Koenker-Machado(1999)
# Both approaches involve solving a parametric linear programming
# problem, the difference is only in the factor qn which
# determines how far the PP goes. In either case one can
# specify two other options:
# 1. interp = FALSE returns two intervals an upper and a
# lower corresponding to a level slightly
# above and slightly below the one specified
# by the parameter alpha and dictated by the
# essential discreteness in the test statistic.
# interp = TRUE returns a single interval based on
# linear interpolation of the two intervals
# returned: c.values and p.values which give
# the critical values and p.values of the
# upper and lower intervals. Default: interp = TRUE.
# 2. tcrit = TRUE uses Student t critical values while
# tcrit = FALSE uses normal theory ones.
# 2. For Multiple Quantiles:
#
# if tau < 0 or tau >1 then it is presumed that the user wants to find
# all of the rq solutions in tau, and the program computes the whole
# quantile regression solution as a process in tau, the resulting arrays
# containing the primal and dual solutions, betahat(tau), ahat(tau)
# are called sol and dsol. These arrays aren't printed by the default
# print function but they are available as attributes.
# It should be emphasized that this form of the solution can be
# both memory and cpu quite intensive. On typical machines it is
# not recommended for problems with n > 10,000.
# In large problems a grid of solutions is probably sufficient.
#
rq.fit.br <-
function (x, y, tau = 0.5, alpha = 0.1, ci = FALSE, iid = TRUE,
interp = TRUE, tcrit = TRUE)
{
tol <- .Machine$double.eps^(2/3)
eps <- tol
big <- .Machine$double.xmax
x <- as.matrix(x)
p <- ncol(x)
n <- nrow(x)
ny <- NCOL(y)
nsol <- 2
ndsol <- 2
# Check for Singularity of X since br fortran isn't very reliable about this
if (qr(x)$rank < p)
stop("Singular design matrix")
if (tau < 0 || tau > 1) {
nsol <- 3 * n
ndsol <- 3 * n
lci1 <- FALSE
qn <- rep(0, p)
cutoff <- 0
tau <- -1
}
else {
if (p == 1)
ci <- FALSE
if (ci) {
lci1 <- TRUE
if (tcrit)
cutoff <- qt(1 - alpha/2, n - p)
else cutoff <- qnorm(1 - alpha/2)
if (!iid) {
h <- bandwidth.rq(tau, n, hs = TRUE)
bhi <- rq.fit.br(x, y, tau + h, ci = FALSE)
bhi <- coefficients(bhi)
blo <- rq.fit.br(x, y, tau - h, ci = FALSE)
blo <- coefficients(blo)
dyhat <- x %*% (bhi - blo)
if (any(dyhat <= 0)) {
pfis <- (100 * sum(dyhat <= 0))/n
warning(paste(pfis, "percent fis <=0"))
}
f <- pmax(eps, (2 * h)/(dyhat - eps))
qn <- rep(0, p)
for (j in 1:p) {
qnj <- lm(x[, j] ~ x[, -j] - 1, weights = f)$resid
qn[j] <- sum(qnj * qnj)
}
}
else qn <- 1/diag(solve(crossprod(x)))
}
else {
lci1 <- FALSE
qn <- rep(0, p)
cutoff <- 0
}
}
z <- .Fortran("rqbr", as.integer(n), as.integer(p), as.integer(n +
5), as.integer(p + 3), as.integer(p + 4), as.double(x),
as.double(y), as.double(tau), as.double(tol), flag = as.integer(1),
coef = double(p), resid = double(n), integer(n), double((n +
5) * (p + 4)), double(n), as.integer(nsol), as.integer(ndsol),
sol = double((p + 3) * nsol), dsol = double(n * ndsol),
lsol = as.integer(0), h = integer(p * nsol), qn = as.double(qn),
cutoff = as.double(cutoff), ci = double(4 * p), tnmat = double(4 *
p), as.double(big), as.logical(lci1))
if (z$flag != 0)
warning(switch(z$flag, "Solution may be nonunique", "Premature end - possible conditioning problem in x"))
if (tau < 0 || tau > 1) {
sol <- matrix(z$sol[1:((p + 3) * z$lsol)], p + 3)
dsol <- matrix(z$dsol[1:(n * z$lsol)], n)
vnames <- dimnames(x)[[2]]
dimnames(sol) <- list(c("tau", "Qbar", "Obj.Fun", vnames),
NULL)
return(list(sol = sol, dsol = dsol))
}
if (!ci) {
coef <- z$coef
dual <- z$dsol[1:n]
names(coef) <- dimnames(x)[[2]]
return(list(coefficients = coef, x = x, y = y, residuals = y - x %*% z$coef,
dual = dual))
}
if (interp) {
Tn <- matrix(z$tnmat, nrow = 4)
Tci <- matrix(z$ci, nrow = 4)
Tci[3, ] <- Tci[3, ] + (abs(Tci[4, ] - Tci[3, ]) * (cutoff -
abs(Tn[3, ])))/abs(Tn[4, ] - Tn[3, ])
Tci[2, ] <- Tci[2, ] - (abs(Tci[1, ] - Tci[2, ]) * (cutoff -
abs(Tn[2, ])))/abs(Tn[1, ] - Tn[2, ])
Tci[2, ][is.na(Tci[2, ])] <- -big
Tci[3, ][is.na(Tci[3, ])] <- big
coefficients <- cbind(z$coef, t(Tci[2:3, ]))
vnames <- dimnames(x)[[2]]
cnames <- c("coefficients", "lower bd", "upper bd")
dimnames(coefficients) <- list(vnames, cnames)
residuals <- y - drop(x %*% z$coef)
return(list(coefficients = coefficients, residuals = residuals))
}
else {
Tci <- matrix(z$ci, nrow = 4)
coefficients <- cbind(z$coef, t(Tci))
residuals <- y - drop(x %*% z$coef)
vnames <- dimnames(x)[[2]]
cnames <- c("coefficients", "lower bound", "Lower Bound",
"upper bd", "Upper Bound")
dimnames(coefficients) <- list(vnames, cnames)
c.values <- t(matrix(z$tnmat, nrow = 4))
c.values <- c.values[, 4:1]
dimnames(c.values) <- list(vnames, cnames[-1])
p.values <- if (tcrit)
matrix(pt(c.values, n - p), ncol = 4)
else matrix(pnorm(c.values), ncol = 4)
dimnames(p.values) <- list(vnames, cnames[-1])
list(coefficients = coefficients, residuals = residuals,
c.values = c.values, p.values = p.values)
}
}
"rq.fit.conquer" <- function(x, y, tau = 0.5, kernel = c("Gaussian", "uniform",
"parabolic", "triangular"), h = 0, tol = 1e-04,
iteMax = 5000, ci = FALSE, alpha = 0.05, B = 200)
{
if(!requireNamespace("conquer", quietly = TRUE))
stop("method conquer requires package conquer")
fit = conquer::conquer(x[,-1], y, tau = tau, kernel = kernel, h = h,
tol = tol, iteMax = iteMax, ci = ci, alpha = alpha, B = 1000)
coefficients = fit$coeff
names(coefficients) = dimnames(x)[[2]]
residuals = fit$residual
list(coefficients = coefficients, tau = tau, residuals = residuals)
}
"rq.fit.fnb" <-
function (x, y, tau = 0.5, rhs = (1-tau)*apply(x,2,sum), beta = 0.99995, eps = 1e-06)
{
n <- length(y)
p <- ncol(x)
if (n != nrow(x))
stop("x and y don't match n")
if (tau < eps || tau > 1 - eps)
stop("No parametric Frisch-Newton method. Set tau in (0,1)")
d <- rep(1,n)
u <- rep(1,n)
wn <- rep(0,10*n)
wn[1:n] <- (1-tau) #initial value of dual solution
z <- .Fortran("rqfnb", as.integer(n), as.integer(p), a = as.double(t(as.matrix(x))),
c = as.double(-y), rhs = as.double(rhs), d = as.double(d),as.double(u),
beta = as.double(beta), eps = as.double(eps),
wn = as.double(wn), wp = double((p + 3) * p),
nit = integer(3), info = integer(1))
if (z$info != 0)
warning(paste("Error info = ", z$info, "in stepy: possibly singular design"))
coefficients <- -z$wp[1:p]
names(coefficients) <- dimnames(x)[[2]]
residuals <- y - x %*% coefficients
list(coefficients=coefficients, tau=tau, residuals=residuals, nit = z$nit)
}
"rq.fit.fnc" <-
function (x, y, R, r, tau = 0.5, beta = 0.9995, eps = 1e-06)
{
n1 <- length(y)
n2 <- length(r)
p <- ncol(x)
if (n1 != nrow(x))
stop("x and y don't match n1")
if (n2 != nrow(R))
stop("R and r don't match n2")
if (p != ncol(R))
stop("R and x don't match p")
if (tau < eps || tau > 1 - eps)
stop("No parametric Frisch-Newton method. Set tau in (0,1)")
rhs <- (1 - tau) * apply(x, 2, sum)
u <- rep(1, max(n1,n2)) #upper bound vector and scratch vector
wn1 <- rep(0, 9 * n1)
wn1[1:n1] <- (1 - tau) #store the values of x1
wn2 <- rep(0, 6 * n2)
wn2[1:n2] <- 1 #store the values of x2
z <- .Fortran("rqfnc", as.integer(n1), as.integer(n2), as.integer(p),
a1 = as.double(t(as.matrix(x))), c1 = as.double(-y),
a2 = as.double(t(as.matrix(R))), c2 = as.double(-r),
rhs = as.double(rhs), d1 = double(n1), d2 = double(n2),
as.double(u), beta = as.double(beta), eps = as.double(eps),
wn1 = as.double(wn1), wn2 = as.double(wn2), wp = double((p + 3) * p),
it.count = integer(3), info = integer(1))
if (z$info != 0)
stop(paste("Error info = ", z$info, "in stepy2: singular design"))
coefficients <- -z$wp[1:p]
names(coefficients) <- dimnames(x)[[2]]
residuals <- y - x %*% coefficients
it.count <- z$it.count
list(coefficients=coefficients, tau=tau, residuals=residuals, it = it.count)
}
"rq.fit.scad" <-
function (x, y, tau = 0.5, alpha = 3.2, lambda = 1, start = "rq", beta = 0.9995, eps = 1e-06)
{
n <- length(y)
p <- ncol(x)
if (n != nrow(x))
stop("x and y don't match n")
if (tau < eps || tau > 1 - eps)
stop("No parametric Frisch-Newton method. Set tau in (0,1)")
if(length(lambda) == 1)
lambda <- c(0,rep(lambda,p-1))
if(length(lambda) != p)
stop(paste("lambda must be either of length ",p," or length one"))
if(any(lambda < 0))
stop("negative lambdas disallowed")
R <- diag(lambda,nrow = length(lambda))
R <- R[which(lambda != 0),, drop = FALSE]
r <- rep(0,nrow(R))
X <- rbind(x, R)
Y <- c(y, r)
N <- length(Y)
rhs <- (1 - tau) * apply(x, 2, sum) + apply(R,2,sum)
dscad <- function(x, a = 3.7, lambda = 2){
lambda * sign(x) * (abs(x) <= lambda) +
sign(x) * (a * lambda - abs(x)) / (a - 1) *
(abs(x) <= a * lambda) * (abs(x) > lambda)
}
binit <- switch(start,
rq = rq.fit.fnb(x, y, tau = tau)$coef[-1],
lasso = rq.fit.lasso(x, y, tau = tau, lambda = lambda)$coef[-1]
)
coef <- rep(.Machine$double.xmax,p)
vscad <- rhs - c(0,dscad(binit) * sign(binit))
it <- 0
while(sum(abs(binit - coef[-1])) > eps){
it <- it + 1
d <- rep(1, N)
u <- rep(1, N)
wn <- rep(0, 10 * N)
wn[1:N] <- c(rep((1 - tau),n),rep(.5,nrow(R)))
vrhs <- rhs - vscad
binit <- coef[-1]
z <- .Fortran("rqfnb", as.integer(N), as.integer(p), a = as.double(t(as.matrix(X))),
c = as.double(-Y), vrhs = as.double(vrhs), d = as.double(d),
as.double(u), beta = as.double(beta), eps = as.double(eps),
wn = as.double(wn), wp = double((p + 3) * p),
it.count = integer(3), info = integer(1))
coef <- -z$wp[1:p]
vscad <- c(0,dscad(coef[2:p]) * sign(coef[2:p]))
}
if (z$info != 0)
stop(paste("Error info = ", z$info, "in stepy2: singular design"))
coefficients <- -z$wp[1:p]
names(coefficients) <- dimnames(x)[[2]]
residuals <- y - x %*% coefficients
it.count <- z$it.count
list(coefficients=coefficients, residuals=residuals, tau = tau,
lambda = lambda, it = it.count)
}
"rq.fit.lasso" <-
function (x, y, tau = 0.5, lambda = NULL, beta = 0.99995, eps = 1e-06)
{
n <- length(y)
p <- ncol(x)
if (n != nrow(x))
stop("x and y don't match n")
if(!length(lambda))
lambda <- LassoLambdaHat(x, tau = tau)
else if(length(lambda) == 1)
lambda <- c(0,rep(lambda,p-1))
else if(length(lambda) != p)
stop(paste("lambda must be either of length ",p," or length one"))
if(any(lambda < 0))
stop("negative lambdas disallowed")
R <- diag(lambda,nrow = length(lambda))
R <- R[which(lambda != 0),, drop = FALSE]
r <- rep(0,nrow(R))
if (tau < eps || tau > 1 - eps)
stop("No parametric Frisch-Newton method. Set tau in (0,1)")
X <- rbind(x, R)
Y <- c(y, r)
N <- length(Y)
rhs <- (1 - tau) * apply(x, 2, sum) + 0.5 * apply(R,2,sum)
d <- rep(1, N)
u <- rep(1, N)
wn <- rep(0, 10 * N)
wn[1:N] <- 0.5
z <- .Fortran("rqfnb", as.integer(N), as.integer(p), a = as.double(t(as.matrix(X))),
c = as.double(-Y), rhs = as.double(rhs), d = as.double(d),
as.double(u), beta = as.double(beta), eps = as.double(eps),
wn = as.double(wn), wp = double((p + 3) * p),
it.count = integer(3), info = integer(1))
if (z$info != 0)
stop(paste("Error info = ", z$info, "in stepy2: singular design"))
coefficients <- -z$wp[1:p]
names(coefficients) <- dimnames(x)[[2]]
residuals <- y - x %*% coefficients
it.count <- z$it.count
list(coefficients=coefficients, residuals=residuals, tau = tau,
lambda = lambda, it = it.count)
}
"rq.fit.pfn" <-
# This is an implementation (purely in R) of the preprocessing phase
# of the rq algorithm described in Portnoy and Koenker, Statistical
# Science, (1997) 279-300. In this implementation it can be used
# as an alternative method for rq() by specifying method="pfn"
# It should probably be used only on very large problems and then
# only with some caution. Very large in this context means roughly
# n > 100,000. The options are described in the paper, and more
# explicitly in the code. Again, it would be nice perhaps to have
# this recoded in a lower level language, but in fact this doesn't
# seem to make a huge difference in this case since most of the work
# is already done in the rq.fit.fnb calls.
#
function(x, y, tau = 0.5, Mm.factor = 0.8,
max.bad.fixups = 3, eps = 1e-6)
{
#rq function for n large --
n <- length(y)
if(nrow(x) != n)
stop("x and y don't match n")
if(tau < 0 | tau > 1)
stop("tau outside (0,1)")
p <- ncol(x)
m <- round(sqrt(p) * n^(2/3))
not.optimal <- TRUE
ifix = 0
ibad = 0
while(not.optimal) {
ibad = ibad + 1
if(m < n)
s <- sample(n, m)
else {
z <- rq.fit.fnb(x, y, tau = tau, eps = eps)
break
}
xx <- x[s, ]
yy <- y[s]
z <- rq.fit.fnb(xx, yy, tau = tau, eps = eps)
xxinv <- solve(chol(crossprod(xx)))
band <- sqrt(((x %*% xxinv)^2) %*% rep(1, p))
#sqrt(h<-ii)
r <- y - x %*% z$coef
M <- Mm.factor * m
lo.q <- max(1/n, tau - M/(2 * n))
hi.q <- min(tau + M/(2 * n), (n - 1)/n)
kappa <- quantile(r/pmax(eps, band), c(lo.q, hi.q))
sl <- r < band * kappa[1]
su <- r > band * kappa[2]
bad.fixups <- 0
while(not.optimal & (bad.fixups < max.bad.fixups)) {
ifix = ifix + 1
xx <- x[!su & !sl, ]
yy <- y[!su & !sl]
if(any(sl)) {
glob.x <- c(t(x[sl, , drop = FALSE]) %*% rep(
1, sum(sl)))
glob.y <- sum(y[sl])
xx <- rbind(xx, glob.x)
yy <- c(yy, glob.y)
}
if(any(su)) {
ghib.x <- c(t(x[su, , drop = FALSE]) %*% rep(
1, sum(su)))
ghib.y <- sum(y[su])
xx <- rbind(xx, ghib.x)
yy <- c(yy, ghib.y)
}
z <- rq.fit.fnb(xx, yy, tau = tau, eps = eps)
b <- z$coef
r <- y - x %*% b
su.bad <- (r < 0) & su
sl.bad <- (r > 0) & sl
if(any(c(su.bad, sl.bad))) {
if(sum(su.bad | sl.bad) > 0.1 * M) {
# This warning may get annoying?
warning("Too many fixups: doubling m")
bad.fixups <- bad.fixups + 1
m <- 2 * m
break
}
su <- su & !su.bad
sl <- sl & !sl.bad
}
else not.optimal <- FALSE
}
}
nit <- c(z$nit,ifix,ibad)
coefficients <- z$coef
names(coefficients) <- dimnames(x)[[2]]
list(coefficients=coefficients, tau=tau, nit = nit)
}
"rq.wfit" <-
function(x, y, tau = 0.5, weights, method = "br", ...)
{
if(any(weights < 0))
stop("negative weights not allowed")
if(length(tau) > 1) {
tau <- tau[1]
warning("Multiple taus not allowed in rq.wfit: solution restricted to first element")
}
contr <- attr(x, "contrasts")
wx <- x * weights
wy <- y * weights
fit <- switch(method,
fn = rq.fit.fnb(wx, wy, tau = tau, ...),
fnb = rq.fit.fnb(wx, wy, tau = tau, ...),
br = rq.fit.br(wx, wy, tau = tau, ...),
fnc = rq.fit.fnc(wx, wy, tau = tau, ...),
sfn = rq.fit.sfn(wx, wy, tau = tau, ...),
conquer = rq.fit.conquer(wx, wy, tau = tau, ...),
ppro = rq.fit.ppro(wx, wy, tau = tau, ...),
pfn = rq.fit.pfn(wx, wy, tau = tau, ...),
pfnb = rq.fit.pfnb(wx, wy, tau = tau, ...), {
what <- paste("rq.fit.", method, sep = "")
if(exists(what, mode = "function"))
(get(what, mode = "function"))(x, y, ...)
else stop(paste("unimplemented method:", method))
}
)
if(length(fit$sol))
fit$fitted.values <- x %*% fit$sol[-(1:3),]
else
fit$fitted.values <- x %*% fit$coef
fit$residuals <- y - fit$fitted.values
fit$contrasts <- attr(x, "contrasts")
fit$weights <- weights
fit
}
"summary.rqs" <-
function (object, ...) {
taus <- object$tau
xsum <- as.list(taus)
dots <- list(...)
U <- NULL # Reuse bootstrap randomization
for(i in 1:length(taus)){
xi <- object
xi$coefficients <- xi$coefficients[,i]
xi$residuals <- xi$residuals[,i]
xi$tau <- xi$tau[i]
class(xi) <- "rq"
xsum[[i]] <- summary(xi, U = U, ...)
if(i == 1 && length(xsum[[i]]$U)) U <- xsum[[i]]$U
if(class(object)[1] == "dynrqs"){
class(xsum[[1]]) <- c("summary.dynrq", "summary.rq")
if(i == 1) xsum[[1]]$model <- object$model
}
}
class(xsum) <- "summary.rqs"
if(class(object)[1] == "dynrqs")
class(xsum) <- c("summary.dynrqs", "summary.rqs")
xsum
}
"logLik.rq" <- function(object, ...){
n <- length(object$residuals)
p <- length(object$coefficients)
pen <- (length(object$lambda) > 0)
tau <- object$tau
fid <- object$rho
val <- n * (log(tau * (1-tau)) - 1 - log(fid/n))
attr(val,"n") <- n
if(pen){
if(!hasArg(edfThresh)) edfThresh <- 0.0001
attr(val,"df") <- sum(abs(object$coefficients) > edfThresh)
}
else attr(val,"df") <- p
class(val) <- "logLik"
val
}
"logLik.rqs" <- function(object, ...){
n <- nrow(object$residuals)
p <- nrow(object$coefficients)
pen <- (length(object$lambda) > 0)
tau <- object$tau
fid <- object$rho
val <- n * (log(tau * (1-tau)) - 1 - log(fid/n))
attr(val,"n") <- n
if(pen){
if(!hasArg(edfThresh)) edfThresh <- 0.0001
attr(val,"df") <- apply(abs(object$coefficients) > edfThresh,2,sum)
}
else attr(val,"df") <- p
class(val) <- "logLik"
val
}
"AIC.rq" <- function(object, ... , k = 2){
v <- logLik(object)
if(k <= 0)
k <- log(attr(v,"n"))
val <- AIC(v, k = k)
attr(val,"edf") <- attr(v,"df")
val
}
"extractAIC.rq" <- function(fit, scale, k=2, ...){
aic <- AIC(fit,k)
edf <- attr(aic, "edf")
c(edf, aic)
}
"AIC.rqs" <- function(object, ... , k = 2){
v <- logLik(object)
if(k <= 0)
k <- log(attr(v,"n"))
val <- AIC(v, k = k)
attr(val,"edf") <- attr(v,"df")
val
}
"summary.rq" <-
# This function provides methods for summarizing the output of the
# rq command. In this instance, "summarizing" means essentially provision
# of either standard errors, or confidence intervals for the rq coefficents.
# Since the preferred method for confidence intervals is currently the
# rank inversion method available directly from rq() by setting ci=TRUE, with br=TRUE.
# these summary methods are intended primarily for comparison purposes
# and for use on large problems where the parametric programming methods
# of rank inversion are prohibitively memory/time consuming. Eventually
# iterative versions of rank inversion should be developed that would
# employ the Frisch-Newton approach.
#
# Object is the result of a call to rq(), and the function returns a
# table of coefficients, standard errors, "t-statistics", and p-values, and, if
# covariance=TRUE a structure describing the covariance matrix of the coefficients,
# i.e. the components of the Huber sandwich.
#
# There are five options for "se":
#
# 1. "rank" strictly speaking this doesn't produce a "standard error"
# at all instead it produces a coefficient table with confidence
# intervals for the coefficients based on inversion of the
# rank test described in GJKP and Koenker (1994).
# 2. "iid" which presumes that the errors are iid and computes
# an estimate of the asymptotic covariance matrix as in KB(1978).
# 3. "nid" which presumes local (in tau) linearity (in x) of the
# the conditional quantile functions and computes a Huber
# sandwich estimate using a local estimate of the sparsity.
# 4. "ker" which uses a kernel estimate of the sandwich as proposed
# by Powell.
# 5. "boot" which uses one of several flavors of bootstrap methods:
# "xy" uses xy-pair method
# "wxy" uses weighted (generalized) method
# "pwy" uses the parzen-wei-ying method
# "pxy" uses the preprocessing method
# "mcmb" uses the Markov chain marginal bootstrap method
# "cluster" uses the Hagemann clustered wild gradient method
# "conquer" uses the He et al multiplier bootstrap
# "BLB" uses the Bag of Little Bootstraps method
#
#
function (object, se = NULL, covariance = FALSE, hs = TRUE, U = NULL, gamma = 0.7, ...)
{
if(object$method == "lasso")
stop("no inference for lasso'd rq fitting: try rqss (if brave, or credulous)")
if(object$method == "conquer") se = "conquer"
mt <- terms(object)
m <- model.frame(object)
y <- model.response(m)
dots <- list(...)
method <- object$method
if(object$method == "sfn"){
x <- object$model$x
vnames <- names(object$coef)
ctrl <- object$control
}
else{
x <- model.matrix(mt, m, contrasts.arg = object$contrasts)
vnames <- dimnames(x)[[2]]
}
wt <- as.vector(model.weights(object$model))
tau <- object$tau
eps <- .Machine$double.eps^(1/2)
coef <- coefficients(object)
if (is.matrix(coef))
coef <- coef[, 1]
resid <- object$residuals
n <- length(y)
p <- length(coef)
rdf <- n - p
if (!is.null(wt)) {
resid <- resid * wt
x <- x * wt
y <- y * wt
}
if (is.null(se)) {
if (n < 1001 & covariance == FALSE)
se <- "rank"
else se <- "nid"
}
if (se == "rank") {
f <- rq.fit.br(x, y, tau = tau, ci = TRUE, ...)
}
if (se == "iid") {
xxinv <- diag(p)
xxinv <- backsolve(qr(x)$qr[1:p, 1:p,drop=FALSE], xxinv)
xxinv <- xxinv %*% t(xxinv)
pz <- sum(abs(resid) < eps)
h <- max(p + 1, ceiling(n * bandwidth.rq(tau, n, hs = hs)))
ir <- (pz + 1):(h + pz + 1)
ord.resid <- sort(resid[order(abs(resid))][ir])
xt <- ir/(n - p)
sparsity <- rq(ord.resid ~ xt)$coef[2]
cov <- sparsity^2 * xxinv * tau * (1 - tau)
scale <- 1/sparsity
serr <- sqrt(diag(cov))
}
else if (se == "nid") {
h <- bandwidth.rq(tau, n, hs = hs)
while((tau - h < 0) || (tau + h > 1)) h <- h/2
bhi <- rq.fit(x, y, tau = tau + h, method = method)$coef
blo <- rq.fit(x, y, tau = tau - h, method = method)$coef
dyhat <- x %*% (bhi - blo)
if (any(dyhat <= 0))
warning(paste(sum(dyhat <= 0), "non-positive fis"))
f <- pmax(0, (2 * h)/(dyhat - eps))
fxxinv <- diag(p)
if(method == "sfn"){
D <- t(x) %*% (f * x)
D <- chol(0.5 * (D + t(D)), nsubmax = ctrl$nsubmax,
nnzlmax = ctrl$nnzlmax, tmpmax = ctrl$tmpmax)
fxxinv <- backsolve(D, fxxinv)
}
else{
fxxinv <- backsolve(qr(sqrt(f) * x)$qr[1:p, 1:p,drop=FALSE], fxxinv)
fxxinv <- fxxinv %*% t(fxxinv)
}
xx <- t(x) %*% x
cov <- tau * (1 - tau) * fxxinv %*% xx %*% fxxinv
scale <- mean(f)
serr <- sqrt(diag(cov))
}
else if (se == "ker") {
h <- bandwidth.rq(tau, n, hs = hs)
while((tau - h < 0) || (tau + h > 1)) h <- h/2
uhat <- c(y - x %*% coef)
h <- (qnorm(tau + h) - qnorm(tau - h))*
min(sqrt(var(uhat)), ( quantile(uhat,.75)- quantile(uhat, .25))/1.34 )
f <- dnorm(uhat/h)/h
fxxinv <- diag(p)
fxxinv <- backsolve(qr(sqrt(f) * x)$qr[1:p, 1:p,drop=FALSE], fxxinv)
fxxinv <- fxxinv %*% t(fxxinv)
cov <- tau * (1 - tau) * fxxinv %*% crossprod(x) %*%
fxxinv
scale <- mean(f)
serr <- sqrt(diag(cov))
}
else if (se == "boot") {
if("cluster" %in% names(dots)) {
bargs <- modifyList(list(x = x, y = y, tau = tau), dots)
if(length(object$na.action)) {
cluster <- dots$cluster[-object$na.action]
bargs <- modifyList(bargs, list(cluster = cluster))
}
if(class(bargs$x)[1] == "matrix.csr")
bargs <- modifyList(bargs, list(control = ctrl))
B <- do.call(boot.rq, bargs)
}
else
B <- boot.rq(x, y, tau, coef = coef, ...)
cov <- cov(B$B)
serr <- sqrt(diag(cov))
}
else if (se == "BLB"){ # Bag of Little Bootstraps
n <- length(y)
b <- ceiling(n^gamma)
S <- n %/% b
V <- matrix(sample(1:n, b * S), b, S)
Z <- matrix(0, NCOL(x), S)
for(i in 1:S){
v <- V[,i]
B <- boot.rq(x[v,], y[v], tau, bsmethod = "BLB", blbn = n, ...)
Z[,i] <- sqrt(diag(cov(B$B)))
}
cov <- cov(B$B)
serr <- apply(Z, 1, mean)
}
else if(se == "extreme"){
tau0 <- tau
if(tau > 0.5) {
y <- -y
tau <- 1 - tau
}
if(length(dots$mofn)) mofn = dots$mofn
else mofn = floor(n/5)
if(length(dots$mofn)) kex = dots$kex
else kex = 20
if(length(dots$alpha)) alpha = dots$alpha
else alpha = 0.1
if(length(dots$R)) R = dots$R
else R = 200
m <- (tau * n + kex)/(tau * n)
taub <- min(tau * n/mofn, tau + (.5 - tau)/3)
# This warning is a bit different than Section 1.3.4 of the Handbook chapter
#if (tau.b.e == tau.e + (.5 - tau.e) / 3 && b >= min(n / 3, 1000))
# warning("tau may be non-extremal results are not likely to differ from central inference");
xbar <- apply(x,2, mean)
b0 <- rq.fit(x, y, tau, method = method)$coef
bm <- rq.fit(x, y, tau = m*tau, method = method)$coef
An <- (m-1)*tau * sqrt(n/(tau*(1-tau)))/c(crossprod(xbar,bm - b0))
bt <- rq.fit(x, y, tau=taub, method = method)$coef
s <- matrix(sample(1:n, mofn * R, replace = T), mofn, R)
mbe <- (taub * mofn + kex)/(taub * mofn)
bmbeb <- rq.fit(x, y, tau = mbe*taub, method = method)$coef
# Accelerated xy bootstrap
B0 <- boot.rq.pxy(x, y, s, taub, bt, method = method)
Bm <- boot.rq.pxy(x, y, s, tau = mbe * taub, bmbeb, method = method)
B <- (mbe - 1) * taub * sqrt(mofn/(taub * (1-taub))) *
(B0 - b0)/c((Bm - B0) %*% xbar)
if (tau0 <= 0.5) {
bbc <- b0 - apply(B, 2, quantile, .5, na.rm = TRUE)/An
ciL <- b0 - apply(B, 2, quantile, 1 - alpha/2, na.rm = TRUE)/An
ciU <- b0 - apply(B, 2, quantile, alpha/2, na.rm = TRUE)/An
} else {
bbc <- -(b0 - apply(B, 2, quantile, .5, na.rm = TRUE)/An)
ciL <- -(b0 - apply(B, 2, quantile, alpha/2, na.rm = TRUE)/An)
ciU <- -(b0 - apply(B, 2, quantile, 1 - alpha/2, na.rm = TRUE)/An)
}
B <- R-sum(is.na(B[,1]))
coef <- cbind(b0, bbc, ciL, ciU)
if(tau0 > 0.5) {coef <- -coef; tau <- tau0}
dimnames(coef) = list(dimnames(x)[[2]], c("coef", "BCcoef","ciL", "ciU"))
}
else if(se == "conquer"){
if(length(dots$R)) R = dots$R
else R = 200
Z <- conquer::conquer(x[,-1], y, tau, ci = TRUE, B = R)
#Fixme: should have option to choose another bsmethod
coef <- cbind(Z$coef, Z$perCI)
cnames <- c("coefficients", "lower bd", "upper bd")
dimnames(coef) <- list(vnames, cnames)
resid <- y - x %*% Z$coef
}
if( se == "rank"){
coef <- f$coef
}
else if(!(se %in% c("conquer", "extreme"))){
coef <- array(coef, c(p, 4))
dimnames(coef) <- list(vnames, c("Value", "Std. Error", "t value",
"Pr(>|t|)"))
coef[, 2] <- serr
coef[, 3] <- coef[, 1]/coef[, 2]
coef[, 4] <- if (rdf > 0)
2 * (1 - pt(abs(coef[, 3]), rdf))
else NA
}
object <- object[c("call", "terms")]
if (covariance == TRUE) {
if(se != "rank") object$cov <- cov
if(se == "iid") object$scale <- scale
if(se %in% c("nid", "ker")) {
object$Hinv <- fxxinv
object$J <- crossprod(x)
object$scale <- scale
}
else if (se == "boot") {
object$B <- B$B
object$U <- B$U
}
}
object$coefficients <- coef
object$residuals <- resid
object$rdf <- rdf
object$tau <- tau
class(object) <- "summary.rq"
object
}
akj <- function(x,
z = seq(min(x), max(x), length = 2 * length(x)),
p = rep(1/length(x), length(x)),
h = -1, alpha = 0.5, kappa = 0.9, iker1 = 0)
{
nx <- length(x)
stopifnot(is.numeric(x),
length(p) == nx,
any((iker1 <- as.integer(iker1)) == 0:1))
nz <- length(z)
if(is.unsorted(x))
x <- sort(x)
.Fortran("sakj",
as.double(x),
as.double(z),
as.double(p),
iker1,
dens = double(nz),
psi = double(nz),
score = double(nz),
as.integer(nx),
as.integer(nz),
h = as.double(h),
as.double(alpha),
as.double(kappa),
double(nx))[c("dens", "psi", "score", "h")]
}
"lm.fit.recursive" <-
function(X, y, int = TRUE)
{
if(int)
X <- cbind(1, X)
p <- ncol(X)
n <- nrow(X)
D <- qr(X[1:p, ])
A <- qr.coef(D, diag(p))
A[is.na(A)] <- 0
A <- crossprod(t(A))
Ax <- rep(0, p)
b <- matrix(0, p, n)
b[, p] <- qr.coef(D, y[1:p])
b[is.na(b)] <- 0
z <- .Fortran( "rls",
as.integer(n),
as.integer(p),
as.double(t(X)),
as.double(y),
b = as.double(b),
as.double(A),
as.double(Ax))
bhat <- matrix(z$b, p, n)
return(bhat)
}
"rq.fit.hogg" <-
function (x, y, taus = c(.1,.3,.5), weights = c(.7,.2,.1),
R= NULL, r = NULL, beta = 0.99995, eps = 1e-06)
{
n <- length(y)
n2 <- NROW(R)
m <- length(taus)
p <- ncol(x)+m
if (n != nrow(x))
stop("x and y don't match n")
if (m != length(weights))
stop("taus and weights differ in length")
if (any(taus < eps) || any(taus > 1 - eps))
stop("taus outside (0,1)")
W <- diag(weights)
if(m == 1) W <- weights
x <- as.matrix(x)
X <- cbind(kronecker(W,rep(1,n)),kronecker(weights,x))
y <- kronecker(weights,y)
rhs <- c(weights*(1 - taus)*n, sum(weights*(1-taus)) * apply(x, 2, sum))
if(n2!=length(r))
stop("R and r of incompatible dimension")
if(!is.null(R))
if(ncol(R)!=p)
stop("R and X of incompatible dimension")
d <- rep(1, m*n)
u <- rep(1, m*n)
if(length(r)){
wn1 <- rep(0, 10 * m*n)
wn1[1:(m*n)] <- .5
wn2 <- rep(0,6*n2)
wn2[1:n2] <- 1
z <- .Fortran("rqfnc", as.integer(m*n), as.integer(n2), as.integer(p),
a1 = as.double(t(as.matrix(X))), c1 = as.double(-y),
a2 = as.double(t(as.matrix(R))), c2 = as.double(-r),
rhs = as.double(rhs), d1 = double(m*n), d2 = double(n2),
as.double(u), beta = as.double(beta), eps = as.double(eps),
wn1 = as.double(wn1), wn2 = as.double(wn2), wp = double((p + 3) * p),
it.count = integer(3), info = integer(1))
}
else{
wn <- rep(0, 10 * m*n)
wn[1:(m*n)] <- .5
z <- .Fortran("rqfnb", as.integer(m*n), as.integer(p), a = as.double(t(as.matrix(X))),
c = as.double(-y), rhs = as.double(rhs), d = as.double(d), as.double(u),
beta = as.double(beta), eps = as.double(eps), wn = as.double(wn),
wp = double((p + 3) * p), it.count = integer(2), info = integer(1))
}
if (z$info != 0)
warning(paste("Info = ", z$info, "in stepy: singular design: iterations ", z$it.count[1]))
coefficients <- -z$wp[1:p]
if(any(is.na(coefficients)))stop("NA coefs: infeasible problem?")
list(coefficients = coefficients, nit = z$it.count, flag = z$info)
}
#preprocessing for the QR process
"rq.fit.ppro" <- function (x, y, tau, weights=NULL, Mm.factor = 0.8, eps = 1e-06, ...)
{
ntau <- length(tau)
n <- length(y)
if (nrow(x) != n) stop("x and y don't match n")
p <- ncol(x)
m <- n * sqrt(p) * max(diff(tau)) # check this length(tau) == 1 case?
dots <- list(...)
method <- ifelse(length(dots$pmethod), dots$pmethod, "fn")
if(length(weights)){
if(any(weights < 0))
stop("negative weights not allowed")
if(length(weights) != n)
stop("weights not of length(y)")
else {
x <- x * weights
y <- y * weights
}
}
coef <- matrix(NA, p, ntau)
resid <- matrix(NA, n, ntau)
rho <- rep(0, ntau)
Rho <- function(u, tau) u * (tau - (u < 0))
z <- rq.fit(x, y, tau=tau[1], method = method)
r <- z$resid
coef[,1] <- z$coef
rho[1] <- sum(Rho(z$residuals, tau[1]))
xxinv <- solve(chol(crossprod(x)))
# Is pmax really necessary here?
band <- pmax(eps, sqrt(((x %*% xxinv)^2) %*% rep(1, p)))
for(i in 2:ntau){
not.optimal <- TRUE
mm <- m
while (not.optimal) {
M <- Mm.factor * mm
lo.q <- max(1/n, tau[i] - M/(2 * n))
hi.q <- min(tau[i] + M/(2 * n), (n - 1)/n)
kappa <- quantile(r/band, c(lo.q, hi.q))
sl <- r < band * kappa[1]
su <- r > band * kappa[2]
while (not.optimal) {
xx <- x[!su & !sl, ]
yy <- y[!su & !sl]
if (any(sl)) {
glob.x <- c(t(x[sl, , drop = FALSE]) %*% rep(1, sum(sl)))
glob.y <- sum(y[sl])
xx <- rbind(xx, glob.x)
yy <- c(yy, glob.y)
}
if (any(su)) {
ghib.x <- c(t(x[su, , drop = FALSE]) %*% rep(1, sum(su)))
ghib.y <- sum(y[su])
xx <- rbind(xx, ghib.x)
yy <- c(yy, ghib.y)
}
z <- rq.fit(xx, yy, tau = tau[i], method = method)
b <- z$coef
r <- y - x %*% b
su.bad <- (r < 0) & su
sl.bad <- (r > 0) & sl
bad.signs <- sum(su.bad | sl.bad)
if (bad.signs > 0) {
if (bad.signs > 0.1 * M) {
mm <- 2*mm
warning("Too many fixups: doubling m")
break
}
su <- su & !su.bad
sl <- sl & !sl.bad
}
else not.optimal <- FALSE
}
}
coef[,i] <- b
resid[,i] <- y - x %*% b
rho[i] <- sum(Rho(resid, tau[i]))
}
dimnames(coef) <- list(dimnames(x)[[2]], tau)
list(coefficients=coef, residuals = resid, rho=rho, weights = weights)
}
# R function for fnb call for multiple taus
rq.fit.qfnb <- function(x,y,tau){
n <- nrow(x)
p <- ncol(x)
m <- length(tau)
d <- rep(1, n)
u <- rep(1, n)
z <- .Fortran("qfnb",
n = as.integer(n),
p = as.integer(p),
m = as.integer(m),
a = as.double(t(x)),
y = as.double(-y),
t = as.double(tau),
r = double(p),
d = as.double(d),
u = as.double(u),
wn = double(n*9),
wp = double(p*(p+3)),
B = double(p*m),
nit = integer(3),
info = integer(1))
if(z$info != 0)
warning(paste("Info = ", z$info, "in stepy: singular design: nit = ", z$nit[1]))
coefficients <- matrix(-z$B, p, m)
dimnames(coefficients) <- list(dimnames(x)[[2]],paste("tau = ",tau))
list(coefficients = coefficients, nit = z$nit, flag = z$info)
}
rq.fit.pfnb <- function (x, y, tau, m0 = NULL, eps = 1e-06) {
m <- length(tau)
n <- length(y)
if(!is.matrix(x)) dim(x) <- c(n,1)
if (nrow(x) != n)
stop("x and y don't match n")
p <- ncol(x)
if(!length(m0))
m0 <- floor(n^(2/3) * sqrt(p)) # Needs testing!
s <- sample(n,m0)
xs <- x[s,,drop = FALSE]
ys <- y[s]
z <- rq.fit(xs, ys, tau = tau[1], method = "fn")
r <- y - x %*% z$coef
b <- matrix(0,p,m)
nit <- matrix(0,5,m)
xxinv <- solve(chol(crossprod(xs)))
band <- pmax(eps, sqrt(((x %*% xxinv)^2) %*% rep(1, p)))
z <- .Fortran("pfnb",
as.integer(n),
as.integer(p),
as.integer(m),
as.double(t(x)),
as.double(y),
as.double(tau),
as.double(r),
b = as.double(-b),
as.double(band),
as.integer(m0),
double(n),
double(n),
double(n*9),
double(p*(p+3)),
double(p*n),
double(n),
integer(n),
integer(n),
double(p),
double(p),
double(p),
nit = as.integer(nit),
info = integer(m))
coefficients <- matrix(-z$b,p,m)
nit <- matrix(z$nit,5,m)
dimnames(coefficients) <- list(dimnames(x)[[2]],paste("tau = ",tau))
list(coefficients = coefficients, nit = nit, flag = z$info)
}
LassoLambdaHat <- function(X, R = 1000, tau = 0.5, C = 1, alpha = 0.95){
# Chernozhukov and Belloni default lasso lambda proposal:
n <- nrow(X)
sigs <- apply(X^2,2,mean)
U <- matrix(runif(n * R),n)
R <- (t(X) %*% (tau - (U < tau)))/sigs
r <- apply(abs(R),2,max)
C * quantile(r, 1 - alpha) * sigs
}
|