[IPSUR-commits] r178 - in pkg: IPSUR IPSUR/inst/doc IPSUR/man RcmdrPlugin.IPSUR/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sun Jul 25 17:17:57 CEST 2010


Author: gkerns
Date: 2010-07-25 17:17:56 +0200 (Sun, 25 Jul 2010)
New Revision: 178

Modified:
   pkg/IPSUR/DESCRIPTION
   pkg/IPSUR/inst/doc/IPSUR.Rnw
   pkg/IPSUR/inst/doc/IPSUR.bib
   pkg/IPSUR/man/IPSUR-package.Rd
   pkg/RcmdrPlugin.IPSUR/man/IPSUR-package.Rd
Log:
changed dates in DESCRIPTION and man
Added R Through Excel to bibliography
fixed dotchart(table(x)) error from R-2.12 x86_64


Modified: pkg/IPSUR/DESCRIPTION
===================================================================
--- pkg/IPSUR/DESCRIPTION	2010-07-23 16:25:45 UTC (rev 177)
+++ pkg/IPSUR/DESCRIPTION	2010-07-25 15:17:56 UTC (rev 178)
@@ -2,7 +2,7 @@
 Type: Package
 Title: Introduction to Probability and Statistics Using R
 Version: 1.0
-Date: 2010-07-23
+Date: 2010-07-25
 Author: G. Jay Kerns
 Maintainer: G. Jay Kerns <gkerns at ysu.edu>
 Suggests: actuar, aplpack, coin, DAAG, distr, distrEx, distrTeach, e1071, exactRankTests, HH (>= 2.1-32), Hmisc, lattice, lmtest, mvtnorm, odfWeave, prob, qcc, RcmdrPlugin.IPSUR (>= 0.1-6), Rcmdr, reshape, scatterplot3d, TeachingDemos (>= 2.5), vcd

Modified: pkg/IPSUR/inst/doc/IPSUR.Rnw
===================================================================
--- pkg/IPSUR/inst/doc/IPSUR.Rnw	2010-07-23 16:25:45 UTC (rev 177)
+++ pkg/IPSUR/inst/doc/IPSUR.Rnw	2010-07-25 15:17:56 UTC (rev 178)
@@ -710,6 +710,9 @@
 for their support. In particular, I would like to thank Dr.~G.~Andy
 Chang for showing me what it means to be a statistician.
 
+I would like to thank Richard Heiberger for his insightful comments
+and improvements to several points and displays in the manuscript. 
+
 Finally, and most importantly, I would like to thank my wife for her
 patience and understanding while I worked hours, days, months, and
 years on a \emph{free book}. In retrospect, I can't believe I ever
@@ -2150,14 +2153,16 @@
 The graph was produced by the following code.
 
 <<eval = FALSE>>=
-dotchart(table(state.region))
+x <- table(state.region)
+dotchart(as.vector(x), labels = names(x))
 @
 
 %
 \begin{figure}
 \begin{centering}
 <<echo = FALSE, fig=true, height = 4.5, width = 6>>=
-dotchart(table(state.region))
+x <- table(state.region)
+dotchart(as.vector(x), labels = names(x))
 @
 \par\end{centering}
 
@@ -11398,7 +11403,7 @@
 mean. It was generated by computing a }\texttt{\small z.test}{\small{}
 from the }\texttt{\small TeachingDemos}{\small{} package, storing the
 resulting }\texttt{\small htest}{\small{} object, and plotting it with
-}\texttt{\small plot.htest}{\small{} from the }\texttt{\small IPSUR}{\small{}
+the }\texttt{\small normal.and.t.dist}{\small{} function from the }\texttt{\small HH}{\small{}
 package. See the remarks in the {}``How to do it with }\textsf{\small R}{\small ''
 discussion later in this section.}
 \end{figure}
@@ -12531,6 +12536,7 @@
 I am thinking about \inputencoding{latin9}\lstinline!replicate!\inputencoding{utf8}\index{replicate@\texttt{replicate}}
 here, and also \inputencoding{latin9}\lstinline!power.examp!\inputencoding{utf8}\index{power.examp@\texttt{power.examp}}
 from the \inputencoding{latin9}\lstinline!TeachingDemos!\inputencoding{utf8}
+package. There is an even better plot in upcoming work from the HH
 package.
 
 %

Modified: pkg/IPSUR/inst/doc/IPSUR.bib
===================================================================
--- pkg/IPSUR/inst/doc/IPSUR.bib	2010-07-23 16:25:45 UTC (rev 177)
+++ pkg/IPSUR/inst/doc/IPSUR.bib	2010-07-25 15:17:56 UTC (rev 178)
@@ -1,4 +1,4 @@
-% This file was created with JabRef 2.3.1.
+% This file was created with JabRef 2.5.
 % Encoding: UTF-8
 
 @MANUAL{foreign,
@@ -415,6 +415,17 @@
   url = {http://astro.temple.edu/~rmh/HH/}
 }
 
+ at BOOK{RthroughExcel,
+  title = {R Through Excel: A Spreadsheet Interface for Statistics, Data Analysis,
+	and Graphics},
+  publisher = {Springer},
+  year = {2009},
+  author = {Heiberger, Richard M. and Neuwirth, Erich},
+  owner = {jay},
+  timestamp = {2010.07.25},
+  url = {http://www.springer.com/statistics/computanional+statistics/book/978-1-4419-0051-7}
+}
+
 @BOOK{Hogg2005,
   title = {Introduction to Mathematical Statistics},
   publisher = {Pearson Prentice Hall},

Modified: pkg/IPSUR/man/IPSUR-package.Rd
===================================================================
--- pkg/IPSUR/man/IPSUR-package.Rd	2010-07-23 16:25:45 UTC (rev 177)
+++ pkg/IPSUR/man/IPSUR-package.Rd	2010-07-25 15:17:56 UTC (rev 178)
@@ -14,7 +14,7 @@
 Package: \tab IPSUR\cr
 Type: \tab Package\cr
 Version: \tab 1.0\cr
-Date: \tab 2009-12-08\cr
+Date: \tab 2010-07-25\cr
 License: \tab GPL (>= 3)\cr
 LazyLoad: \tab yes\cr
 }

Modified: pkg/RcmdrPlugin.IPSUR/man/IPSUR-package.Rd
===================================================================
--- pkg/RcmdrPlugin.IPSUR/man/IPSUR-package.Rd	2010-07-23 16:25:45 UTC (rev 177)
+++ pkg/RcmdrPlugin.IPSUR/man/IPSUR-package.Rd	2010-07-25 15:17:56 UTC (rev 178)
@@ -16,7 +16,7 @@
 \tabular{ll}{
 Package: \tab RcmdrPlugin.IPSUR\cr
 Version: \tab 0.1-6\cr
-Date: \tab 2009-12-25\cr
+Date: \tab 2010-07-23\cr
 Depends: \tab Rcmdr (>= 1.4-0), rgl\cr
 Suggests: \tab abind, distr, distrEx, e1071, effects (>= 1.0-7), foreign, grid, lattice, lmtest, MASS, mgcv, multcomp (>= 0.991-2), nlme, nnet, qcc, relimp, RODBC\cr
 LazyLoad: \tab no\cr



More information about the IPSUR-commits mailing list