= Stata Describe = '''`-describe-`''' describes the active dataset. <> ---- == Usage == Used alone, `-describe-` lists the names and details about all variables in memory. {{{ describe describe foo bar baz }}} Use the '''`fullnames`''' option to prevent truncation of variable names. To create a new dataset describing the current one, try: {{{ describe, replace }}} To create a new dataset describing an external one, try: {{{ describe using "foo.dta" }}} ---- == See also == [[https://www.stata.com/manuals/ddescribe.pdf|Stata manual for -describe-]] ---- CategoryRicottone