The “summarize” command (PDF) produces output showing the number of observations, mean, standard deviation, as well as the minimum and maximum values of each respective variable. This procedure is best suited to describe continuous variables.
summarize followed by the names of the variable(s) you’re interested in examining.command.
There are many ways to calculate frequencies (i.e., counts) in Stata. One option is the “tabulate” command (PDF). This command can be used to generate contingency tables / crosstabs. These kinds of statistics are best used for categorical variables.
tabulate [VARIABLE1] [VARIABLE2] to generate a table of frequencies

tabulate [VARIABLE 1] [VARIABLE 2], row to generate a table of proportions / percentages.

Assessing normality can be done visually, such with a histogram or Q-Q Plot, or statistically with a Shapiro-Wilk Test. To run the Shapiro-Wilk test, use the “swilk” command (PDF).
swilk [VARIABLE 1]

hist [VARIABLE 1]
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.