Hi Stata experts,
I am working with a panel dataset.
I want to plot a graph with the number of company's per country per month. I have a database with almost all european countries, but I want to make a graph conntaining four lines:
1. total company's each month
2. number of company's UK each month
3. number of company's Germany each month
4. number of company's in Italy each month
I want the axis to contain mofd and the y to contain de number of company's (stocks).
My data looks like this: where country has a country code (so f.e. UK =GB and Germany = BD), Code is the code for a specific company and mofd contains month in stata language.
So this would be a company from Poland.
I hope you can help me. Thanks a lot.
I am working with a panel dataset.
I want to plot a graph with the number of company's per country per month. I have a database with almost all european countries, but I want to make a graph conntaining four lines:
1. total company's each month
2. number of company's UK each month
3. number of company's Germany each month
4. number of company's in Italy each month
I want the axis to contain mofd and the y to contain de number of company's (stocks).
My data looks like this: where country has a country code (so f.e. UK =GB and Germany = BD), Code is the code for a specific company and mofd contains month in stata language.
Code:
* Example generated by -dataex-. For more info, type help dataex clear input str6 Code str2 Country float mofd "87380E" "PL" 637 "87380E" "PL" 638 "87380E" "PL" 639 "87380E" "PL" 640 "87380E" "PL" 641 "87380E" "PL" 642 "87380E" "PL" 643 "87380E" "PL" 644 "87380E" "PL" 645 "87380E" "PL" 646 "87380E" "PL" 647 "87380E" "PL" 648 "87380E" "PL" 649 "87380E" "PL" 650 "87380E" "PL" 651 "87380E" "PL" 652 "87380E" "PL" 653 "87380E" "PL" 654 "87380E" "PL" 655 "87380E" "PL" 656 end format %tm mofd
I hope you can help me. Thanks a lot.

Comment