Skip to content

Commit

Permalink
umx_greater_than
Browse files Browse the repository at this point in the history
  • Loading branch information
tbates committed Oct 8, 2013
1 parent bcc20a1 commit 4a297d8
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ export(umxDescriptives)
export(umxDrop1)
export(umxEquate)
export(umxGetParameters)
export(umxGreaterThan)
export(umxHasCIs)
export(umxHetCor)
export(umxIsMxModel)
export(umxIsRAMmodel)
export(umxJiggle)
export(umxLabel)
export(umxLessThan)
export(umxLower2full)
export(umxMI)
export(umxPlot)
Expand All @@ -31,6 +29,8 @@ export(umxUnexplainedCausalNexus)
export(umx_APA_pval)
export(umx_cor)
export(umx_find_object)
export(umx_greater_than)
export(umx_less_than)
export(umx_move_file)
export(umx_pp33)
export(umx_rename_file)
Expand Down
17 changes: 17 additions & 0 deletions man/umx_greater_than.Rd
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
\name{umx_greater_than}
\alias{\%\%>\%\%}
\alias{umx_greater_than}
\title{umxGreaterThan}
\usage{
umx_greater_than(table, x)
}
\description{
A version of greater-than that excludes NA as a match
}
\examples{
c(1:3,NA,5) = \%>\% 2
}
\seealso{
- \code{\link{umx_less_than}},
}

18 changes: 18 additions & 0 deletions man/umx_less_than.Rd
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
\name{umx_less_than}
\alias{\%\%<\%\%}
\alias{umx_less_than}
\title{umxLessThan}
\usage{
umx_less_than(table, x)
}
\description{
A version of less-than which returns FALSE for NAs
(rather than NA)
}
\examples{
c(1:3, NA, 5) = \%<\% 2
}
\seealso{
- \code{\link{umx_greater_than}},
}

0 comments on commit 4a297d8

Please sign in to comment.