= Stata Describe = The '''`describe`''' command describes data in memory. <> ---- == 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