Modification commentaires Roxygen
This commit is contained in:
parent
79246138f2
commit
842a555d13
3 changed files with 11 additions and 4 deletions
|
@ -1,9 +1,12 @@
|
|||
# TODO: Add comment
|
||||
# Iterative GMM method
|
||||
#
|
||||
# Author: francois
|
||||
# Author: Francois Pelletier
|
||||
#
|
||||
# LGPL-3.0
|
||||
###############################################################################
|
||||
|
||||
|
||||
#' Iterative GMM method
|
||||
#'
|
||||
#' @param start Starting values for the parameters and lagrangian
|
||||
#' @param conditions.vector Vector of moment conditions
|
||||
#' @param sample Individual data sample
|
||||
|
|
|
@ -11,7 +11,7 @@ covariance.GMM(conditions.vector, param, sample...)
|
|||
|
||||
\item{sample}{Individual data sample}
|
||||
|
||||
\item{...}{Parameters of the vector of moment conditions}
|
||||
\item{...}{Functions of the vector of moment conditions}
|
||||
}
|
||||
\value{
|
||||
A square covariance matrix
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
\name{iterative.GMM}
|
||||
\alias{iterative.GMM}
|
||||
\title{Iterative GMM method}
|
||||
\usage{
|
||||
iterative.GMM(start, conditions.vector, sample, ..., W, R, r, max.iter = 50,
|
||||
epsilon = 1e-06)
|
||||
|
@ -28,6 +29,9 @@ iterative.GMM(start, conditions.vector, sample, ..., W, R, r, max.iter = 50,
|
|||
A list containing the optimized vector of parameter and
|
||||
corresponding covariance matrix
|
||||
}
|
||||
\description{
|
||||
Iterative GMM method
|
||||
}
|
||||
\author{
|
||||
François Pelletier
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue