Hi all,
I have a dataset looks like the following structure:
The FIPS is the county FIPS code. (I already have another shapefile in stata format with unique value in FIPS)
My goal is to investigate if project costs in FIPS 10000 is affected by project costs in FIPS 11000 (and other variables 1, ,2 ,3).
I went over the "spxtregress" however not sure if my data is a "panel spatial dataset."
First, I have multiple observations in one FIPS; second, the Project ID is not really a time variable, hence doing
is meaningless.
I appreciate any suggestions on how to set up the regression correctly.
Thank you.
I have a dataset looks like the following structure:
FIPS | Project | Cost | var1, 2, 3, ... |
10000 | a | 100 | |
10000 | b | 120 | |
10000 | c | 150 | |
11000 | d | 110 | |
11000 | e | 130 |
My goal is to investigate if project costs in FIPS 10000 is affected by project costs in FIPS 11000 (and other variables 1, ,2 ,3).
I went over the "spxtregress" however not sure if my data is a "panel spatial dataset."
First, I have multiple observations in one FIPS; second, the Project ID is not really a time variable, hence doing
Code:
xtset FIPS Project
I appreciate any suggestions on how to set up the regression correctly.
Thank you.
Comment