Dear all,
I have a dataset and divided my observations into 5 clusters (based on 8 criteria) with the following command:
Out of the many groups, I choose the ones where most of the observations were in (5 groups with a large number of observations).
With an ANOVA I would like to compute if there are differences in the variable firm profit. So I would like to analyze if the profit variance between the clusters is higher than the variance within clusters.
Is the following command appropriate in your opinion?
Is ANOVA the right method or should I choose a regression model?
I have a dataset and divided my observations into 5 clusters (based on 8 criteria) with the following command:
Code:
egen cluster = group( criteria 1 criteria 2 criteria 3 criteria 4 criteria 5 criteria 6 criteria 7 criteria 8 ) tab cluster tabstat criteria 1 criteria 2 criteria 3 criteria 4 criteria 5 criteria 6 criteria 7 criteria 8, by(cluster)
Out of the many groups, I choose the ones where most of the observations were in (5 groups with a large number of observations).
With an ANOVA I would like to compute if there are differences in the variable firm profit. So I would like to analyze if the profit variance between the clusters is higher than the variance within clusters.
Is the following command appropriate in your opinion?
Code:
anova Profit 1.cluster 2.cluster 3.cluster 4.cluster 5.cluster
Comment