📄 messv_g3d2.m
字号:
% PURPOSE: An example of using messv_g3() on a large data set% Bayesian matrix exponential spatial model %---------------------------------------------------% USAGE: messv_g3d2 (see messv_g3d for a small data set)%---------------------------------------------------clear all;% NOTE a large data set with 3107 observations% from Pace and Barry, % test MCMC sampling on pace and barry data setclear all;load elect.dat; % load data on votesy = (elect(:,7)./elect(:,8));x1 = log(elect(:,9)./elect(:,8));x2 = log(elect(:,10)./elect(:,8));x3 = log(elect(:,11)./elect(:,8));n = length(y); x = [ones(n,1) x1 x2 x3];latt = elect(:,5);long = elect(:,6);vnames = strvcat('voters','const','educ','homeowners','income');clear elect;option.latt = latt;option.long = long;option.mmin = 7;option.mmax = 10;option.rmin = 0.8;option.rmax = 1.0;%option.xflag = 1; % include spatial lags of x-variablesndraw = 1100;nomit = 100;res1 = messv_g3(y,x,option,ndraw,nomit);prt(res1,vnames);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -