Hi,
I came across the following command:
Where DateStartRole is the start date of a directors job in a company, Deal_Announced is the announcement date of an M&A transaction and DirectorID is the ID of the specific director.
I was asking myself what the "." is supposed to do in the code? According to the rangejoin syntax, it represents the low boundary, whereas DateStartRole is the key variable and Deal_Announced the upper boundary.
I suppose the "." is a general stata command here, as I couldn't find ich using the help file of rangejoin.
Thanks
I came across the following command:
Code:
rangejoin DateStartRole . Deal_Announced using temp_director_histories, by(DirectorID)
I was asking myself what the "." is supposed to do in the code? According to the rangejoin syntax, it represents the low boundary, whereas DateStartRole is the key variable and Deal_Announced the upper boundary.
I suppose the "." is a general stata command here, as I couldn't find ich using the help file of rangejoin.
Thanks
Comment