Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 660 Bytes

Model 6.md

File metadata and controls

33 lines (27 loc) · 660 Bytes

Model 6

graph LR;
A -->  D1{ } --> C;
A --> D2{ } --> B --> D3{ } --> C;
W --> D1{ };
W --> D2{ };
W --> D3{ };
W --> B;
W --> C;
Loading

Its definition file

[[Model6_definition]]

Setting up the models for analysis

[[Prepare Model for Analysis]]

	Out = ['',B', 'C','']
	In = [[],['A','W'],['A','B','W'],[]]
	Inter = [ [[]], [['A','W']], [['B','W'], ['A','W']], [[]] ]

Estimating the regression equations

[[Run Regression Model]]

These are the regression equations that should be created from this process. dA means variable A with its mean removed

	regstats(B,[A W dA*dW])
	regstats(C,[A B W dB*dW dB*dW])