Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Sysuse auto/tab

    I have these two deliverables:

    5. Find the mean, median, min and max winsorized Z-Score for the whole sample.
    6. Find the mean, median, min, and max winsorized Z-Score by SIC industry.
    7. Find the mean, median, min, and max winsorized Z-Score by year.

    However when I try to use sysuse auto it says "no; data in memory would be lost", and i cannot find how to get this statistical data in one swipe as my professor is asking for. Advice?

  • #2
    For the auto data, Stata is telling you what she is telling you because you have other data loaded, and the other data is not saved.

    You need to make sure that the data in your memory is saved, see the command -save-.

    After you have made sure you would not lose anything of value, you write

    Code:
    clear
    sysuse auto
    or in one shot

    Code:
    sysuse auto, clear
    The winsorising part of the question is duplicate from
    https://www.statalist.org/forums/for...1939-winsorize

    Comment


    • #3
      Katrina:
      again, please, see https://www.statalist.org/forums/help#adviceextras #4. Thanks.
      Kind regards,
      Carlo
      (Stata 19.0)

      Comment

      Working...
      X