home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / statstcs / mystat.arc / DEMO.CMD < prev    next >
OS/2 REXX Batch file  |  1987-01-15  |  3KB  |  109 lines

  1. NOTE 'Welcome to MYSTAT, a personal version of SYSTAT.  MYSTAT offers full-screen     spreadsheet data entry, 32,000 cases, 50 variables, unlimited transformations,  basic statistics, exploratory and analytic graphics, correlations, multiple     regression, polynomial regression, residual analysis, regression diagnostics,   nonparametrics, cross-tabulations, chi-square and association statistics, multi-way factorial and unequal-n analysis of variance, and analysis of covariance.'
  2. NOTE 'MYSTAT is a statistical package produced by SYSTAT Inc., a leading developer of technical microcomputer software.  Every procedure in MYSTAT produces identical results to SYSTAT.  The only difference  is in the number of routines offered.  The following demonstration will show you a few of the capabilities of this     powerful statistics package.'
  3. NOTE 'First, we will enter data.  The MYSTAT editor works like a spreadsheet.  You canenter values on any number of cases, use the cursor keys to change cells, and   perform simple or complex transformations.  Watch how the cursor enters, alters,and transforms data.'
  4. EDIT
  5. Q
  6. FORMAT 1
  7. Q
  8. 'CITY$
  9. 'STATE$
  10. 'POP
  11. 'RAINFALL
  12. W
  13. 'New York
  14. 'NY
  15. 7164742
  16. 57.03
  17. 'Los Angeles
  18. 'CA
  19. 3096721
  20. 7.81
  21. 'Chicago
  22. 'IL
  23. 2992472
  24. 34.00
  25. 'Dallas
  26. 'TX
  27. 974234
  28. 33.89
  29. 'Phoenix
  30. 'AZ
  31. 853266
  32. 14.91
  33. 'Miami
  34. 'FL
  35. 346865
  36. 60.02
  37. 'Washington
  38. 'DC
  39. 638432
  40. 37.73
  41. 'Paris
  42. 'France
  43. E
  44. E
  45. E
  46. E
  47. E
  48. E
  49. D
  50. D
  51. X
  52. X
  53. X
  54. X
  55. X
  56. X
  57. S
  58. S
  59. S
  60. S
  61. 'Oops!
  62. D
  63. D
  64. E
  65. E
  66. E
  67. E
  68. E
  69. E
  70. S
  71. S
  72. X
  73. X
  74. X
  75. X
  76. X
  77. X
  78. S
  79. 'Kansas City
  80. 'MO
  81. 448159
  82. 38.77
  83. Q
  84. LET LOGPOP=LOG(POP)
  85. SAVE CITIES / SINGLE
  86.  
  87. QU
  88. FORMAT 3
  89. NOTE 'To analyze the data in this file, we USE the file.  There is no need to redefinevariables or formats.  Just type:                                               USE CITIES'
  90. USE CITIES
  91. NOTE 'Here is a histogram of the logarithm of POPULATION (LOGPOP).  Just type:        HIST LOGPOP'
  92. HIST LOGPOP
  93. NOTE 'Here is a box plot of RAINFALL.  Just type:                                     BOX RAINFALL'
  94. BOX RAINFALL
  95. NOTE 'Here is a stem-and-leaf diagram of RAINFALL.  Just type:                        STEM RAINFALL'
  96. STEM RAINFALL
  97. NOTE 'Here is a scatterplot of LOGPOP against RAINFALL, with the first letter of CITY as the labeling character.  Just type:                                          PLOT LOGPOP*RAINFALL / SYMBOL=CITY$'
  98. PLOT LOGPOP*RAINFALL / SYMBOL=CITY$
  99. NOTE 'Here are the basic statistics on the variables in the file.  Just type:         STATS'
  100. STATS
  101. NOTE 'Here is the Pearson correlation of RAINFALL with LOGPOP.  Just type             PEARSON RAINFALL,LOGPOP'
  102. PEARSON RAINFALL,LOGPOP
  103. NOTE 'Here is a regression of LOGPOP on RAINFALL.  Just type:                         MODEL LOGPOP = CONSTANT + RAINFALL                                              ESTIMATE'
  104. MODEL LOGPOP = CONSTANT + RAINFALL
  105. ESTIMATE
  106. NOTE 'These results are a washout.  The data are all wet.  You have seen only a few   of the capabilities of MYSTAT.  And SYSTAT contains much, much more.  Here is a summary of the differences.'
  107. HELP SYSTAT
  108. NOTE 'Now that you have seen a few statistics, try some more yourself.  Type HELP for assistance with any command.  Type INTRO for a copy of the MYSTAT user manual.'
  109.