[Yuima-commits] r620 - in pkg/yuima: . man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Aug 11 23:30:17 CEST 2017


Author: lorenzo
Date: 2017-08-11 23:30:16 +0200 (Fri, 11 Aug 2017)
New Revision: 620

Modified:
   pkg/yuima/NAMESPACE
   pkg/yuima/man/yuima-class.Rd
Log:


Modified: pkg/yuima/NAMESPACE
===================================================================
--- pkg/yuima/NAMESPACE	2017-08-11 08:01:34 UTC (rev 619)
+++ pkg/yuima/NAMESPACE	2017-08-11 21:30:16 UTC (rev 620)
@@ -118,7 +118,7 @@
 "F0",
 "Fnorm",
 "asymptotic_term",
-"cbind.yuima",
+#"cbind.yuima",
 "rand",
 "dens",
 "cdf",
@@ -224,7 +224,7 @@
 export(qgv)
 export(mmfrac)
 
-export(cbind.yuima)
+#export(cbind.yuima)
 #export(rbind.yuima)
 S3method(print, phitest)
 S3method(print, qgv)
@@ -240,6 +240,7 @@
 S3method(toLatex, yuima.carma)
 S3method(toLatex, yuima.cogarch)
 S3method(rbind, yuima.model)
+S3method(cbind, yuima)
 
 S3method(plot, yuima.llag) # Oct. 10, 2015
 S3method(plot, yuima.mllag) # Oct. 10, 2015

Modified: pkg/yuima/man/yuima-class.Rd
===================================================================
--- pkg/yuima/man/yuima-class.Rd	2017-08-11 08:01:34 UTC (rev 619)
+++ pkg/yuima/man/yuima-class.Rd	2017-08-11 21:30:16 UTC (rev 620)
@@ -1,90 +1,90 @@
-\name{yuima-class}
-\docType{class}
-\alias{yuima-class}
-\alias{get.zoo.data,yuima-method}
-\alias{plot,yuima,ANY-method}
-\alias{dim,yuima-method}
-\alias{length,yuima-method}
-\alias{cce,yuima-method}
-\alias{llag,yuima-method}
-\alias{initialize,yuima-method}
-\alias{simulate,yuima-method}
-\alias{poisson.random.sampling,yuima-method}
-\alias{subsampling,yuima-method}
-\alias{ql,yuima-method}
-\alias{rql,yuima-method}
-\alias{ml.ql,yuima-method}
-\alias{limiting.gamma,yuima-method}
-\alias{LSE,yuima-method}
-\alias{cbind.yuima,yuima-method}
-
-\title{Class for stochastic differential equations}
-\description{
-  The \code{yuima} S4 class is a class of the \pkg{yuima} package.  
-}
-\section{Slots}{
-  \describe{
-    \item{\code{data}:}{an object of class \code{\link{yuima.data-class}}}
-	\item{\code{model}:}{an object of class \code{\link{yuima.model-class}}}
-	\item{\code{sampling}:}{an object of class 
-	 \code{\link{yuima.sampling-class}}}
-    \item{\code{characteristic}:}{an object of class 
-	 \code{\link{yuima.characteristic-class}}}
-    \item{\code{functional}:}{an object of class 
-	 \code{\link{yuima.functional-class}}}
-  }
-}
-\details{
-The \code{yuima-class} object is the main object of the \pkg{yuima} package.
-Some of the slots may be missing. 
-
-The \code{data} slot contains the data, either empirical or simulated. 
-
-The \code{model} contains the description of the 
-(statistical) model which is used to generate the \code{data} via different 
-simulation schemes, to draw inference from the \code{data} or both.
-
-The \code{sampling} slot contains information on how the \code{data} have been
-collected or how they should be generated.
-
-The slot \code{characteristic} contains information on 
- \code{PLEASE FINISH THIS}.
-The slot \code{functional} contains information on 
- \code{PLEASE FINISH THIS}.
-}
-\section{Methods}{
-  \describe{
-    \item{new}{\code{signature(x = "yuima", data = "yuima.data",
-	  model = "yuima.model", sampling = "yuima.sampling",
-	  characteristic = "yuima.characteristic"}: the function makes a copy of 
-	  the prototype object from the class definition of 
-	  \code{\link{yuima-class}}, then calls the \code{initialize} method 
-	  passing as arguments the newly created object and the remaining
-	  arguments.}
-	\item{initialize}{\code{signature(x = "yuima", data = "yuima.data",
-	  model = "yuima.model", sampling = "yuima.sampling",
-	  characteristic = "yuima.characteristic"}:  makes a copy of each argument
-	  in the corresponding slots of the object \code{x}.}
-    \item{get.data}{\code{signature(x = "yuima")}: returns the content of the
-	  slot \code{data}.}
-    \item{plot}{\code{signature(x = "yuima", \dots)}: calls  
-	 \code{\link{plot}} from the \code{\link{zoo}} package with argument
-	 \code{x at data@zoo.data}. Additional arguments \code{\dots} are passed
-	 as is to the \code{\link{plot}} function.} 
-	\item{dim}{\code{signature(x = "yuima")}: the number of SDEs in the
-	  \code{yuima} object.}
-    \item{length}{\code{signature(x = "yuima")}: a vector of length of
-	  each SDE described in the \code{yuima} object.}
-    \item{cce}{\code{signature(x = "yuima")}: calculates the asyncronous
-	 covariance estimator on the data contained in \code{x at data@zoo.data}. 
-	 For more details see \code{\link{cce}}.}
-   \item{llag}{\code{signature(x = "yuima")}: calculates the lead lag estimate
-	 r on the data contained in \code{x at data@zoo.data}. 
-	 For more details see \code{\link{llag}}.}
-    \item{simulate}{simulation method. For more information see
-	  \code{\link{simulate}}.}
-    \item{cbind.yuima}{\code{signature(x = "yuima")}: bind yuima.data object.}	
-  }
-}
-\author{The YUIMA Project Team}
-\keyword{classes}
+\name{yuima-class}
+\docType{class}
+\alias{yuima-class}
+\alias{get.zoo.data,yuima-method}
+\alias{plot,yuima,ANY-method}
+\alias{dim,yuima-method}
+\alias{length,yuima-method}
+\alias{cce,yuima-method}
+\alias{llag,yuima-method}
+\alias{initialize,yuima-method}
+\alias{simulate,yuima-method}
+\alias{poisson.random.sampling,yuima-method}
+\alias{subsampling,yuima-method}
+\alias{ql,yuima-method}
+\alias{rql,yuima-method}
+\alias{ml.ql,yuima-method}
+\alias{limiting.gamma,yuima-method}
+\alias{LSE,yuima-method}
+\alias{cbind,yuima,ANY-method}
+
+\title{Class for stochastic differential equations}
+\description{
+  The \code{yuima} S4 class is a class of the \pkg{yuima} package.
+}
+\section{Slots}{
+  \describe{
+    \item{\code{data}:}{an object of class \code{\link{yuima.data-class}}}
+	\item{\code{model}:}{an object of class \code{\link{yuima.model-class}}}
+	\item{\code{sampling}:}{an object of class
+	 \code{\link{yuima.sampling-class}}}
+    \item{\code{characteristic}:}{an object of class
+	 \code{\link{yuima.characteristic-class}}}
+    \item{\code{functional}:}{an object of class
+	 \code{\link{yuima.functional-class}}}
+  }
+}
+\details{
+The \code{yuima-class} object is the main object of the \pkg{yuima} package.
+Some of the slots may be missing.
+
+The \code{data} slot contains the data, either empirical or simulated.
+
+The \code{model} contains the description of the
+(statistical) model which is used to generate the \code{data} via different
+simulation schemes, to draw inference from the \code{data} or both.
+
+The \code{sampling} slot contains information on how the \code{data} have been
+collected or how they should be generated.
+
+The slot \code{characteristic} contains information on
+ \code{PLEASE FINISH THIS}.
+The slot \code{functional} contains information on
+ \code{PLEASE FINISH THIS}.
+}
+\section{Methods}{
+  \describe{
+    \item{new}{\code{signature(x = "yuima", data = "yuima.data",
+	  model = "yuima.model", sampling = "yuima.sampling",
+	  characteristic = "yuima.characteristic"}: the function makes a copy of
+	  the prototype object from the class definition of
+	  \code{\link{yuima-class}}, then calls the \code{initialize} method
+	  passing as arguments the newly created object and the remaining
+	  arguments.}
+	\item{initialize}{\code{signature(x = "yuima", data = "yuima.data",
+	  model = "yuima.model", sampling = "yuima.sampling",
+	  characteristic = "yuima.characteristic"}:  makes a copy of each argument
+	  in the corresponding slots of the object \code{x}.}
+    \item{get.data}{\code{signature(x = "yuima")}: returns the content of the
+	  slot \code{data}.}
+    \item{plot}{\code{signature(x = "yuima", \dots)}: calls
+	 \code{\link{plot}} from the \code{\link{zoo}} package with argument
+	 \code{x at data@zoo.data}. Additional arguments \code{\dots} are passed
+	 as is to the \code{\link{plot}} function.}
+	\item{dim}{\code{signature(x = "yuima")}: the number of SDEs in the
+	  \code{yuima} object.}
+    \item{length}{\code{signature(x = "yuima")}: a vector of length of
+	  each SDE described in the \code{yuima} object.}
+    \item{cce}{\code{signature(x = "yuima")}: calculates the asyncronous
+	 covariance estimator on the data contained in \code{x at data@zoo.data}.
+	 For more details see \code{\link{cce}}.}
+   \item{llag}{\code{signature(x = "yuima")}: calculates the lead lag estimate
+	 r on the data contained in \code{x at data@zoo.data}.
+	 For more details see \code{\link{llag}}.}
+    \item{simulate}{simulation method. For more information see
+	  \code{\link{simulate}}.}
+    \item{cbind}{\code{signature(x = "yuima")}: bind yuima.data object.}
+  }
+}
+\author{The YUIMA Project Team}
+\keyword{classes}



More information about the Yuima-commits mailing list