Dear reader,
I am looking into the moderating effect of CEO tenure on the direct effect between several inter-organizational relationships and managerial attention (with panel data)
When preparing my final dataset, I am executing the following steps.
However when performing the xtreg it says note: ceo_tenure omitted because of collinearity..
How can I resolve this problem?
Best,
Sanne
I am looking into the moderating effect of CEO tenure on the direct effect between several inter-organizational relationships and managerial attention (with panel data)
When preparing my final dataset, I am executing the following steps.
Code:
** To determine the final sample, a few steps have to be undertaken **Step 1: drop unncessary observations drop if missing(firm_name) // drop unnecessary observations, 7,086 were deleted **Step 2: Identify time variable & unit identifyier xtset id_firm_num year_num // When working with panel data, an xtset must be performend to identify a time variable and unit identifyier. save dataset_masterthesis_sannevandenbergh, replace **Step 3: run a full regression model ssc install outreg2 xtreg digital_transformation_keywords c.AC_keywords##c.ceo_tenure c.alliance_count##c.ceo_tenure employees_num firm_performance rnd_intensity organizational_slack ceo_total_compensation lengthtenk i.year_num i.industry_num // number of observations = 17,940 gen sample = e(sample) keep if sample == 1 // create final sample // 7,629 observations were deleted drop sample save dataset_masterthesis_sannevandenbergh, replace // save final dataset for the data preperation file
How can I resolve this problem?
Best,
Sanne

) still holds.
Comment