I am trying to produce summary statistics by year for a sample of variables using this code:
sort filing_year issue_year
ssc install asdoc
bys filing_year: asdoc tabstat patent_num cpc scheme_code xi_nominal xi_real cites, replace stat(N mean sd min max)
But, when I run the command I get this outcome: "command tostring is unrecognized"
And when I try to install tostring using: "ssc install tostring"
It gives me this error:
ssc install: "tostring" not found at SSC, type search tostring
(To find all packages at SSC that start with t, type ssc describe t)
r(601);
Can anyone help me?
Thanks!
sort filing_year issue_year
ssc install asdoc
bys filing_year: asdoc tabstat patent_num cpc scheme_code xi_nominal xi_real cites, replace stat(N mean sd min max)
But, when I run the command I get this outcome: "command tostring is unrecognized"
And when I try to install tostring using: "ssc install tostring"
It gives me this error:
ssc install: "tostring" not found at SSC, type search tostring
(To find all packages at SSC that start with t, type ssc describe t)
r(601);
Can anyone help me?
Thanks!
Comment