Skip to content

Commit

Permalink
v0.6.1 to CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
braunm committed Mar 30, 2015
1 parent 5c2f577 commit 63893ea
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions man/Deprecated.Rd
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
% Generated by roxygen2 (4.1.0): do not edit by hand
% Please edit documentation in R/deprecated.R
\name{Deprecated}
\alias{Deprecated}
\alias{inv.logit}
\alias{inv.vech}
\alias{log_inv.logit}
\alias{logit}
\alias{vech}
\title{Deprecated functions}
\usage{
vech(M)

inv.vech(y)

logit(p)

inv.logit(x)

log_inv.logit(x)
}
\arguments{
\item{M}{a matrix}

\item{y}{A vector of conforming length}

\item{p}{A scalar, vector or matrix, where each element
is between 0 and 1.}

\item{x}{A scalar, vector or matrix}
}
\value{
A vector containing the lower triangle of M, ordered
column-wise.

A k x k lower triangular matrix

result = log(p/(1-p))

result = exp(x)/(1+exp(x))

result = log[exp(x)/(1+exp(x))]
}
\description{
These functions were in earlier versions, but will no
longer be maintained in this package. They will likely be
moved to another package a some time.

vech operator on a square matrix

inverse vech operator on a vector

Logit transformation

Inverse logit transformation

Log inverse logit transformation
}

0 comments on commit 63893ea

Please sign in to comment.