immer.html
来自「本程序是基于linux系统下c++代码」· HTML 代码 · 共 83 行
HTML
83 行
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>R: Yields from a Barley Field Trial</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="../../R.css">
</head><body>
<table width="100%" summary="page for immer {MASS}"><tr><td>immer {MASS}</td><td align="right">R Documentation</td></tr></table>
<h2>Yields from a Barley Field Trial</h2>
<h3>Description</h3>
<p>
The <code>immer</code> data frame has 30 rows and 4 columns. Five varieties of
barley were grown in six locations in each of 1931 and
1932.
</p>
<h3>Usage</h3>
<pre>
immer
</pre>
<h3>Format</h3>
<p>
This data frame contains the following columns:
<dl>
<dt><code>Loc</code></dt><dd>The location.
</dd>
<dt><code>Var</code></dt><dd>The variety of barley (<code>"manchuria"</code>, <code>"svansota"</code>, <code>"velvet"</code>,
<code>"trebi"</code> and <code>"peatland"</code>).
</dd>
<dt><code>Y1</code></dt><dd>Yield in 1931
</dd>
<dt><code>Y2</code></dt><dd>Yield in 1932
</dd></dl>
<h3>Source</h3>
<p>
Immer, F.R., Hayes, H.D. and LeRoy Powers (1934)
Statistical determination of barley varietal adaptation.
<EM>Journal of the American Society for Agronomy</EM>
<B>26</B>, 403–419.
</p>
<p>
Fisher, R.A. (1947)
<EM>The Design of Experiments.</EM>
4th edition.
Edinburgh: Oliver and Boyd.
</p>
<h3>References</h3>
<p>
Venables, W. N. and Ripley, B. D. (1999)
<EM>Modern Applied Statistics with S-PLUS.</EM> Third
Edition. Springer.
</p>
<h3>Examples</h3>
<pre>
immer.aov <- aov(cbind(Y1,Y2) ~ Loc + Var, data = immer)
summary(immer.aov)
immer.aov <- aov((Y1+Y2)/2 ~ Var + Loc, data = immer)
summary(immer.aov)
model.tables(immer.aov, type = "means", se = TRUE, cterms = "Var")
</pre>
<hr><div align="center">[Package <em>MASS</em> version 7.2-44 <a href="00Index.html">Index]</a></div>
</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?