Title: | Functions for Wayne W. Daniel's Biostatistics, Tenth Edition |
---|---|
Description: | Functions to accompany Wayne W. Daniel's Biostatistics: A Foundation for Analysis in the Health Sciences, Tenth Edition. |
Authors: | Tingting Zhan [aut, cre] |
Maintainer: | Tingting Zhan <[email protected]> |
License: | GPL-2 |
Version: | 0.2.6 |
Built: | 2025-03-31 05:19:57 UTC |
Source: | https://github.com/tingtingzhan/danielbiostatistics10th |
Functions and examples to accompany Wayne W. Daniel's Biostatistics: A Foundation for Analysis in the Health Sciences, Tenth Edition, Wiley, ISBN: 978-1-119-62550-6.
Data sets from 10th edition https://bcs.wiley.com/he-bcs/Books?action=resource&bcsId=7849&itemId=1118302796&resourceId=30373.
Resources from 11th edition https://bcs.wiley.com/he-bcs/Books?action=index&bcsId=11491&itemId=1119496578, with errata of data.
Maintainer: Tingting Zhan [email protected] (ORCID)
Functions for Chapter 7, Hypothesis Testing.
power_z( x, null.value, sd, n, alternative = c("two.sided", "less", "greater"), sig.level = 0.05 )
power_z( x, null.value, sd, n, alternative = c("two.sided", "less", "greater"), sig.level = 0.05 )
x |
numeric vector, mean parameter(s) |
null.value |
numeric scalar, mean parameter |
sd |
numeric scalar, population standard deviation |
n |
integer scalar, sample size |
alternative |
character scalar, alternative hypothesis,
either |
sig.level |
numeric scalar, significance level (i.e., Type-I-error rate), default |
Function power_z calculates the powers at each element of the alternative parameters , for one-sample
-test
vs.
, if
alternative = 'two.sided'
vs.
, if
alternative = 'greater'
vs.
, if
alternative = 'less'
Function power_z()
returns a 'power_z'
object,
which inherits from 'power.htest'
class.