Hello Stata community,
I'm relatively new to Stata and currently working on my master's thesis, which involves measuring the performance of golf players. I have gathered extensive data from various players across different tournaments, intending to measure performance per hole (Netto_hole) and overall tournament performance (Netto_tournament).
My goal is to assess player performance based on individual abilities (e.g., scores from one and two holes before the observed hole, handicap, age, gender) and flight composition (e.g., male and female players in a flight, average handicap per flight, potential differences in handicap and performance between male and female players).
I'm facing two main challenges. Firstly, my dataset is structured as panel data, with holes 1-18 acting as the time variable, and it has multiple levels: player level, flight level, and tournament level.
The first regression works smoothly:
stataCopy code
xtreg Netto_hole l1.Netto_hole l2.Netto_hole HCPI years_in_club, fe vce(cluster TurnierID)
However, in the second regression, a significant portion of the variance is explained by effects between different groups:
stataCopy code
xtreg Netto_hole avg_hcpi_flight female_better_on_hole avg_Netto_flight_hole, fe vce(cluster TurnierID)
For the third regression, I'm unsure whether the arrangement of different levels is correct and meaningful. I've tested various regression options with estat ic, and this form seemed to be the most specific:
stataCopy code
mixed Netto_hole l1.Netto_hole l2.Netto_hole female Age HCPI member good_start1 everyone_better || TurnierID: || flightcluster: mixed_flight avg_hcpi_flight female_betterHCPI_than_male female_better_total || ID:
However, when I attempt to examine the output for the overall tournament (Netto_tournament), I encounter an issue. Regardless of the xtregression method used, every independent variable is labeled as "omitted," and I'm struggling to understand why:
stataCopy code
xtreg Netto_tournament female HCPI years_in_club member special_tournament , fe vce(cluster TurnierID)
I would greatly appreciate any insights, suggestions, or assistance you could provide. Thank you in advance for your help!
Best regards, Benno
I'm relatively new to Stata and currently working on my master's thesis, which involves measuring the performance of golf players. I have gathered extensive data from various players across different tournaments, intending to measure performance per hole (Netto_hole) and overall tournament performance (Netto_tournament).
My goal is to assess player performance based on individual abilities (e.g., scores from one and two holes before the observed hole, handicap, age, gender) and flight composition (e.g., male and female players in a flight, average handicap per flight, potential differences in handicap and performance between male and female players).
I'm facing two main challenges. Firstly, my dataset is structured as panel data, with holes 1-18 acting as the time variable, and it has multiple levels: player level, flight level, and tournament level.
The first regression works smoothly:
stataCopy code
xtreg Netto_hole l1.Netto_hole l2.Netto_hole HCPI years_in_club, fe vce(cluster TurnierID)
However, in the second regression, a significant portion of the variance is explained by effects between different groups:
stataCopy code
xtreg Netto_hole avg_hcpi_flight female_better_on_hole avg_Netto_flight_hole, fe vce(cluster TurnierID)
For the third regression, I'm unsure whether the arrangement of different levels is correct and meaningful. I've tested various regression options with estat ic, and this form seemed to be the most specific:
stataCopy code
mixed Netto_hole l1.Netto_hole l2.Netto_hole female Age HCPI member good_start1 everyone_better || TurnierID: || flightcluster: mixed_flight avg_hcpi_flight female_betterHCPI_than_male female_better_total || ID:
However, when I attempt to examine the output for the overall tournament (Netto_tournament), I encounter an issue. Regardless of the xtregression method used, every independent variable is labeled as "omitted," and I'm struggling to understand why:
stataCopy code
xtreg Netto_tournament female HCPI years_in_club member special_tournament , fe vce(cluster TurnierID)
I would greatly appreciate any insights, suggestions, or assistance you could provide. Thank you in advance for your help!
Best regards, Benno
Comment