【发布时间】:2021-06-07 07:39:08
【问题描述】:
我有一些关于使用蒙特卡罗模拟和 OLS 回归来估计一些系数的 Matlab 代码。 在 Python 中怎么可能做到这一点?
see screenshot of code, or below
Define the true DGP parameters and distributions
% Set the parameters in the model
b1 = 5;
b2 = -2;
% The variance of the error term
sigma2 = 2;
% The sample length. We will play with three different sample sizes and see how this affects the results
N = [100 500 1000];
% The number of simulations
S = 1000;
Generate x data
% Generate the x values as draws from the multivariate normal distributions
% This is the correlation structure between the x's
Sigma = [0.7 0.4;
0.4 0.3];
% Simple way of drawing random numbers from the multivariate normal distribution
x = chol(Sigma)'*randn(2,max(N));
% Make the x1 and x2 variables
x1 = x(1,:)';
x2 = x(2,:)';
Monte Carlo simulation 1
y = b1*x1 + e is the true model
We will now simulate data from this model and then use OLS to estimate two versions of the model:
y = b1mc*x1 + e and
y = b1mc_2*x1 + b2*x2 + e
% Always good practive to allocate empty output before loops
b1mc = nan(S, numel(N));
b1mc_2 = nan(S, numel(N));
% Simple counter to use when allocating results into b1mc below
cnt = 1;
for n = N % Loop over the different sample sizes N
for s = 1 : S
% generate random errors
u = randn(n,1)*sqrt(sigma2);
% simulate the process
y = b1*x1(1:n) + u;
% Estimate coefficients by OLS (easy in Matlab) and save
b1mc(s,cnt) = x1(1:n)\y;
tmp = [x1(1:n) x2(1:n)]\y;
b1mc_2(s,cnt) = tmp(1); % Only save the first parameter
end
cnt = cnt + 1;
end
【问题讨论】:
-
嘿,从你的问题中不清楚你在问什么,你在 python 中缺少哪些功能,而你在 matlab 中有哪些功能?你想做最小二乘回归吗?如果有,试试this,sklearn有很多预测工具
-
嗨!我想知道如何在 Python 中进行与 Matlab 命令 x1(1:n)\y 类似的回归
-
你能帮我吗,告诉我\在matlab中做了什么?自从我使用它以来已经有一段时间了。和使用的here一样吗?
-
表示回归!因此它以 x1 作为预测变量对 y 进行回归。
-
欢迎来到 Stack Overflow!请使用tour、阅读what's on-topic here、How to Ask和question checklist,并提供minimal reproducible example。 “为我实现此功能”与此站点无关。你必须诚实地尝试,然后就你的算法或技术提出一个具体问题。
标签: python matlab regression montecarlo