pilotData(SSPA)
pilotData()所属R语言包:SSPA
Creates an object of class "PilotData"
创建一个类“PilotData”的对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function pilotData initializes a PilotData-object. Information of the pilot data and the null distribution is stored e.g. name of pilot experiment, test statistics and number of samples used.
功能pilotDataPilotData对象初始化。试验数据和空分布的信息存储如试点实验,测试统计和样本数的名称。
用法----------Usage----------
pilotData(name = "Unknown Experiment", testStatistics = double(1), sampleSizeA = double(1), sampleSizeB = double(1), dof = double(1), nullDist = c("normal", "student"))
参数----------Arguments----------
参数:name
character string giving the experiment name
给予实验名称的字符串
参数:testStatistics
vector of type numeric containing the set of test statistics
向量型数字包含一套测试统计
参数:sampleSizeA
the samplesize of group A
A组中的采样
参数:sampleSizeB
the samplesize of group B
B组中的采样
参数:dof
degree of freedom for a Student t distribution
学生t分布的自由度
参数:nullDist
distribution under the null hypothesis either one of:
分布在零假设一方的:
"normal",
“正常”,
"student", (only in case of method="Ruppert" see sampleSize) </ul> </table>
“学生”,(只有在方法的情况下,“Ruppert公司”看到sampleSize)</ UL> </表>
Details
详情----------Details----------
Based on the given null distribution two-sided p-values are calculated from the test statistics. Some additional checks on the data are performed. Once an object of PilotData is created the sampleSize-function can be called.
基于给定的空分布双面测试统计计算p值。对数据进行一些额外的检查。一旦对象PilotDatasampleSize,可以被称为功能。
值----------Value----------
object of class PilotData
对象类PilotData
作者(S)----------Author(s)----------
Maarten van Iterson
参见----------See Also----------
hist, plot and PilotData use class?PilotData
histplot和PilotData用class?PilotData
举例----------Examples----------
library(multtest)
data(golub)
teststat <- mt.teststat(golub, golub.cl)
table(golub.cl)
pd <- pilotData(name="golub", testStatistics=teststat, sampleSizeA=11, sampleSizeB=27)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|