Thanks. In the master dataset, we just need the firm names. So run
You can also do the same for the using dataset. As part of the sample, we can select firms that start with a letter in the alphabet.
Then post the results from the above.
Code:
contract firm_name sort firm_name dataex
Code:
contract firm_name alliance_count sort firm_name dataex if regexm(firm_name, "^[a-zA-Z]")
Comment