1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/deprecated.R
\name{plm-deprecated}
\alias{plm-deprecated}
\alias{detect_lin_dep}
\alias{pvcovHC}
\alias{plm.data}
\alias{dynformula}
\alias{formula.dynformula}
\alias{print.dynformula}
\alias{pFormula}
\alias{as.Formula.pFormula}
\alias{model.frame.pFormula}
\alias{model.matrix.pFormula}
\title{Deprecated functions of plm}
\usage{
pvcovHC(x, ...)
plm.data(x, indexes = NULL)
dynformula(formula, lag.form = NULL, diff.form = NULL, log.form = NULL)
\method{formula}{dynformula}(x, ...)
\method{print}{dynformula}(x, ...)
pFormula(object)
\method{as.Formula}{pFormula}(x, ...)
\method{as.Formula}{pFormula}(x, ...)
\method{model.frame}{pFormula}(formula, data, ..., lhs = NULL, rhs = NULL)
\method{model.matrix}{pFormula}(
object,
data,
model = c("pooling", "within", "Between", "Sum", "between", "mean", "random", "fd"),
effect = c("individual", "time", "twoways", "nested"),
rhs = 1,
theta = NULL,
cstcovar.rm = NULL,
...
)
}
\arguments{
\item{\dots}{further arguments.}
\item{indexes}{a vector (of length one or two) indicating the (individual
and time) indexes (see Details);}
\item{formula}{a formula,}
\item{lag.form}{a list containing the lag structure of each variable in the
formula,}
\item{diff.form}{a vector (or a list) of logical values indicating whether
variables should be differenced,}
\item{log.form}{a vector (or a list) of logical values indicating whether
variables should be in logarithms.}
\item{object, x}{an object of class \code{"plm"},}
\item{data}{a \code{data.frame},}
\item{lhs}{see Formula}
\item{rhs}{see Formula}
\item{model}{see plm}
\item{effect}{see plm}
\item{theta}{the parameter of transformation for the random effect model}
\item{cstcovar.rm}{remove the constant columns or not}
}
\description{
\code{dynformula}, \code{pht}, \code{plm.data}, and \code{pvcovHC} are
deprecated functions which could be removed from \pkg{plm} in a near future.
}
\details{
\code{dynformula} was used to construct a dynamic formula which was the
first argument of \code{pgmm}. \code{pgmm} uses now multi-part formulas.
\code{pht} estimates the Hausman-Taylor model, which can now be estimated
using the more general \code{plm} function.
\code{plm.data} is replaced by \code{pdata.frame}.
\code{pvcovHC} is replaced by \code{vcovHC}.
\code{detect_lin_dep} was renamed to \code{detect.lindep}.
}
|