home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e032 / 3.ddi / FILES / SCOMMON.PAK / HYPOTHES.M < prev   
Encoding:
Text File  |  1992-07-29  |  1.9 KB  |  62 lines

  1.  
  2. (*:Version: Mathematica 2.0 *)
  3.  
  4. (*:Name: Statistics`Common`HypothesisCommon` *)
  5.  
  6. (*:Title:
  7.   Functions and Options for Confidence Intervals and Hypothesis Tests
  8. *)
  9.  
  10. (*:Author:
  11.   Dave Withoff (Wolfram Research), March, 1991
  12. *)
  13.  
  14. (*:Legal:
  15.   Copyright (c) 1991, Wolfram Research, Inc.
  16. *)
  17.  
  18. (*:Reference: usage messages only. *)
  19.  
  20. (*:Summary:
  21.   This package contains usage messages for option names used by
  22.   both Statistics`ConfidenceIntervals` and Statistics`HypothesisTesets`.
  23. *)
  24.  
  25. (*:Keywords: mean, variance, sample mean *)
  26.  
  27. (*:Requirements: No special system requirements. *)
  28.  
  29. (*:Warning: none. *)
  30.  
  31. (*:Sources: basic statistics texts. *)
  32.  
  33. BeginPackage["Statistics`Common`HypothesisCommon`"]
  34.  
  35. KnownVariance::usage =
  36. "KnownVariance is an option to statistical confidence interval and
  37. hypothesis test functions, and is used to specify the population variance
  38. whenever formulas corresponding to known population variance are to
  39. be used.  The variance specification should be a list of variances if
  40. more than one different variance is to be specified.  If only one
  41. variance is specified, it is used for all appropriate populations."
  42.  
  43. KnownStandardDeviation::usage =
  44. "KnownStandardDeviation is an option to statistical confidence interval and
  45. hypothesis test functions, and is used to specify the population standard
  46. deviation whenever formulas corresponding to known population standard
  47. deviation are to be used.  The standard deviation specification should be
  48. a list of standard deviations if more than one different standard deviation
  49. is to be specified.  If only one standard deviation is specified, it is
  50. used for all appropriate populations."
  51.  
  52. EqualVariances::usage =
  53. "EqualVariances is an option to certain statistical confidence interval
  54. and hypothesis test functions and is used to specify that the appropriate
  55. unknown population variances are equal."
  56.  
  57.  
  58.  
  59.  
  60.  
  61. EndPackage[]
  62.