我正在尝试使用Matlab中的简单设置来实现分位数回归过程。 This page包含作为线性程序的分位数回归的描述,并显示适当的矩阵和向量。我已经尝试在Matlab中实现它,但是我没有得到bhat-vector的正确的最后一个元素。它应该是1左右但我得到一个非常低的值(< 1e-10)。使用我的另一种算法,我得到的值为1.0675。我哪里做错了?我猜A,B或f是错误的。
我尝试过使用优化设置,但我认为这不是问题所在。我认为从数学到代码时我犯了一个转换错误,我只是看不到。
% set seed
rng(1);
% set parameters
n=30;
tau=0.5;
% create regressor and regressand
x=rand(n,1);
y=x+rand(n,1)/10;
% number of regressors (1)
m=size(x,2);
% vektors and matrices for linprog
f=[tau*ones(n,1);(1-tau)*ones(n,1);zeros(m,1)];
A=[eye(n),-eye(n),x;
-eye(n),eye(n),-x;
-eye(n),zeros(n),zeros(n,m);
zeros(n),-eye(n),zeros(n,m)];
b=[y;
y
zeros(n,1);
zeros(n,1)];
% get solution bhat=[u,v,beta] and exitflag (1=succes)
[bhat,~,exflag]=linprog(f',A,b);
答案 0 :(得分:0)
我通过使用我试图在问题中实现的那个上面的公式(在pdf中)解决了我的问题。如果您对代码感兴趣,我会把它放在Matlab函数中。
function [ bhat ] = qregressMatlab( y, x, tau )
% bhat are the estimates
% y is a vector of outcomes
% x is a matrix with columns of explanatory variables
% tau is a scalar for choosing the conditional quantile to be estimated
n=size(x,1);
m=size(x,2);
% vectors and matrices for linprog
f=[tau*ones(n,1);(1-tau)*ones(n,1);zeros(m,1)];
Aeq=[eye(n),-eye(n),x];
beq=y;
lb=[zeros(n,1);zeros(n,1);-inf*ones(m,1)];
ub=inf*ones(m+2*n,1);
% Solve the linear programme
[bhat,~,~]=linprog(f,[],[],Aeq,beq,lb,ub);
% Pick out betas from (u,v,beta)-vector.
bhat=bhat(end-m+1:end);
end