home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / science / xlspstrd.sit / glim / README < prev   
Lisp/Scheme  |  1991-02-19  |  966b  |  27 lines

  1. This folder contains a simple set of tools for fitting generalized linear
  2. models in xlispstat, along with some documentation and a file with the
  3. Bradley-Terry example from the documentation. The files included are
  4.  
  5.     README            this file
  6.     glim.lsp          generalized linear model code
  7.     glim.tex          LaTeX documentation
  8.     bradleyterry.lsp  Bradley-Terry example
  9.  
  10. To use the system you can load it with the load command. You can also
  11. make it available by placing glim.lsp in the directory or folder
  12. containing the files loaded on startup and adding the lines
  13.  
  14. (autoload normalreg-model "glim")
  15. (autoload poissonreg-model "glim")
  16. (autoload loglinreg-model "glim")
  17. (autoload binomialreg-model "glim")
  18. (autoload logitreg-model "glim")
  19. (autoload probitreg-model "glim")
  20. (autoload gammareg-model "glim")
  21. (autoload indicators "glim")
  22. (autoload cross-terms "glim")
  23. (autoload level-names "glim")
  24. (autoload cross-names "glim")
  25.  
  26. to the end of the file autoload.lsp.
  27.