home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / next / misc / 18735 < prev    next >
Encoding:
Text File  |  1992-08-17  |  6.0 KB  |  188 lines

  1. Newsgroups: comp.sys.next.misc
  2. Path: sparky!uunet!caen!destroyer!lsa.umich.edu!news
  3. From: Hal.Varian@umich.edu
  4. Subject: statistics for NeXT: summary
  5. Message-ID: <1992Aug17.183011.18661@lsa.umich.edu>
  6. Keywords: statistics
  7. Sender: news@lsa.umich.edu
  8. Reply-To: Hal.Varian@umich.edu
  9. Organization: University of Michigan Math Dept
  10. Date: Mon, 17 Aug 1992 18:30:11 GMT
  11. Lines: 175
  12.  
  13. This is a summary of information about statistics packages for  
  14. the NeXT computer.  Send corrections, addition, etc. to  
  15. Hal.Varian@umich.edu and I will update.
  16.  
  17. Commercial
  18. ----------
  19.  
  20. S -- ATT Software. This is the New S.  Doesn't have interactive  
  21. graphics; just dump to PostScript files and read with Preview.   
  22. At one time cost was  $800 for source code, $10 per cpu license  
  23. fee, but they seem to change their policy every week or so.
  24.  
  25. S-plus -- requires X windows.  Contact mktg@statsci.com    
  26. 206-283-8802
  27.  
  28. SAS -- Cost about the same as PC version.  Works well, but does  
  29. not conform to NeXTstep user interface.
  30.  
  31. Shazam -- Uses gnuplot for graphics. Contact Kenneth White,  
  32. <ken@unixg.ubc.ca>, for details.  Price is about $400, site  
  33. licenses available.
  34.  
  35. SST -- runs on NeXT, no graphics.  Contact jad@lear.caltech.edu,  
  36. for details.  Price is about $800, site licenses available.
  37.  
  38. TSP -- Contact 415-326-1927.
  39.  
  40. Free
  41. -----
  42.  
  43. |STAT -- a collection of Unix filters for statistics.  Available  
  44. via anonymous ftp in pub/stat at ftp.cis.ohio-state.edu  
  45. (128.146.8.52)  This is free software, but he doesn't want it  
  46. distributed on bulletin boards, etc.  ftp the crypted version  
  47. and send email to  Gary Perlman <perlman@cis.ohio-state.edu> to  
  48. get the password.  
  49.  
  50. xlispstat -- Object oriented successor to S. Very impressive.   
  51. Anonymous ftp source code and documentation from  
  52. umnstat.stat.umn.edu.  Can be compiled for "generic unix" or for  
  53. X windows.
  54.  
  55. Generic unix.  This way you have all the computational tools,  
  56. but onlyminimal graphics capability.  In order to compile this  
  57. version, change the GRAPHSYS flag from X11WINDOWS to GNUPLOT in  
  58. the Makefile.
  59.  
  60. In the generic version, xlispstat produces Tektronics output for  
  61. a few simple types of plots.  You can cut and paste this output  
  62. into a file and run it through ps4014 to view the output on the  
  63. NeXT.  To do this, use the ps4014 emulator in the extended  
  64. distribution:
  65.    ps4014 -R -S 7 < infile.tek > outfile.ps
  66. The resulting ps file can be viewed using Preview.  You can also  
  67. run it through Darcy Brockbank's program ps2eps and produce an  
  68. eps file that can inserted into documents, etc.
  69.  
  70. X Windows.  This gives you access to the many graphics tools,
  71. including spinplots, scatterplots, histograms, box plots, etc.
  72.  
  73. Make the following changes to the modifiable part of the  
  74. Makefile will compile xlispstat using co-Xist libraries for X  
  75. Windows.  It assumes that you have installed co-Xist and  
  76. xlispstat in the default location.  I'm told that it also  
  77. compiles with mouseX, but haven't checked this myself.
  78.  
  79. cut here----------------------------------
  80. #Makefile for xlispstat
  81. #Minor modifications by Hal Varian (HRV) for NeXT 
  82.  
  83. ################################################################ 
  84. ##############
  85. # Directories
  86. # XLISPLIB is where the xlisp executable, the .lsp files to be  
  87. loaded on 
  88. # startup and the examples are to be kept.
  89. # BINDIR is where the xlispstat shell script is to be put.
  90. #
  91. # NOTE: if XLISPLIB is not empty it MUST end with a /
  92.  
  93. XLISPLIB=/usr/local/lib/xlispstat/
  94. BINDIR=/usr/local/bin
  95.  
  96. ################################################################ 
  97. ##############
  98. ################################################################ 
  99. ##############
  100. # HRV: Graphics system. Uncomment one of the following choices:
  101. # HRV: use GNUPLOT if you don't have Xwindows
  102.  
  103. #GRAPHSYS = GNUPLOT
  104. #GRAPHSYS = SUNVIEW
  105. GRAPHSYS = X11WINDOWS
  106.  
  107. ################################################################ 
  108. ##############
  109. ################################################################ 
  110. ##############
  111. # Sun Operating System Version. Only used for SUNVIEW graphics  
  112. system.
  113. # Use SUN3X for sun OS 3.X and SUN4X for sun OS 4.X under  
  114. SunView;
  115.  
  116. #SUNOS = SUN3X
  117. #SUNOS = SUN4X
  118.  
  119. ################################################################ 
  120. ##############
  121. ################################################################ 
  122. ##############
  123. # User Compiler Flags
  124. # Add a -I directive if the X11 include files are not in a  
  125. standard place
  126. # For Sun's OpenLook, for example, add -I/usr/openwin/include
  127.  
  128. #UCFLAGS = -O -f68881
  129. #ULDFLAGS = -f68881
  130. #HRV: eliminate 68881 option; add= -D flag to avoid link  
  131. conflict
  132. UCFLAGS = -O -v -Draise=rraise
  133. ULDFLAGS =  
  134.  
  135. CC=cc
  136. LD=ld
  137.  
  138. ################################################################ 
  139. ##############
  140. ################################################################ 
  141. ##############
  142. # Foreign function call flag. If this flag is defined you should  
  143. also
  144. # define a machine chosen from one of the directories in the  
  145. machines
  146. # directory. Look at the README file in the machine directory  
  147. for your
  148. # machine - you may have to add some additional compiler or ld  
  149. flags
  150. # to make dynamic loading work.
  151. #
  152. # If you do not want to use foreign function calling define the  
  153. machine
  154. # as `generic'
  155.  
  156. #FOREIGN_FLAG = -DFOREIGNCALL
  157. #MACHINE = sun3
  158. #HRV: use generic machine 
  159. MACHINE = generic
  160.  
  161. ################################################################ 
  162. ##############
  163. ################################################################ 
  164. ##############
  165. # Additional libraries and files to load at compile time
  166.  
  167. EXTRALIBS=
  168. EXTRAOBJS=
  169.  
  170. ################################################################ 
  171. ##############
  172. ################################################################ 
  173. ##############
  174. # Directory to search for X11 libraries (libX11.a, etc.)
  175.  
  176. #HRV: this is where co-Xist puts the X11 libraries
  177. X11LIBDIR=/usr/include/X11
  178.  
  179. ################################################################ 
  180. ##############
  181.  
  182. [rest of makefile is the same]
  183.  
  184. ---
  185. Hal.Varian@umich.edu    Hal Varian
  186. voice: 313-764-2364     Dept of Economics
  187. fax:   313-764-2364     Univ of Michigan
  188.