freq1way(s20x)
freq1way()所属R语言包:s20x
Analysis of 1-dimensional frequency tables
分析一维的频数分布表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
If hypothprob is absent: prints confidence intervals for the true proportions, a Chi-square test for uniformity, confidence intervals for differences in proportions (no corrections for multiple comparisons and plots the proportions.
如果hypothprob是不存在的:打印的真实比例的置信区间的均匀性,置信区间的比例差异(多重比较,并绘制比例不改正的,卡方检验。
If hypothprob is present: prints confidence intervals for the true proportions, a Chi-square test for the hypothesized probabilities, and plots the sample proportions (with atached confidence limits) alongside the
如果hypothprob存在:打印的真实比例,卡方检验假设的概率,并绘制了样本比例的置信区间(与atached的置信区间)旁边的
用法----------Usage----------
参数----------Arguments----------
参数:counts
A 1-way frequency table as produced by table()
1路频率表(表)
参数:hypothprob
If present, a set of probabilities to test the cell counts against
如果存在,一组的概率测试单元计数打击
参数:conf.level
confidence level for the confidence interval, expressed as a decimal.
置信水平下的置信区间,以小数表示。
参数:addCIs
If true, adds confidence limits to plot of sample proportions
如果为true,增添了信心图的样本比例的限制
参数:digits
used to control rounding of printout
用于控制舍入的打印输出
参数:arrowwid
controls width of arrowheads
控制宽度箭头的
参数:estimated
default is 0. Subtracted from the df for the Chi-square test.
默认值是0。减去DF卡方检验。
值----------Value----------
An invisible list containing the following components:
一种无形的列表,其中包含以下组件:
参数:CIs
a matrix containing the confidence intervals.
一个矩阵包含的置信区间。
参数:exp
a vector of the expected counts.
预期计数的向量。
参数:chi
a vector of the components of Chi-square.
智方的组件的向量。
实例----------Examples----------
##Body image data:[#主体图像数据:]
data(body.df)
eth.table <- with(body.df, table(ethnicity))
freq1way(eth.table)
freq1way(eth.table,hypothprob=c(0.2,0.4,0.3,0.1))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|