-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reduce methods appearing in docs, to make docs clearer (#961)
* Don't show "usage" for all classes (make docs clearer) * docs * docs * docs * docs * docs * typo * docs * find_param
- Loading branch information
1 parent
911cb38
commit 05b9c3c
Showing
30 changed files
with
417 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -259,13 +259,9 @@ find_parameters.lavaan <- function(x, flatten = FALSE, ...) { | |
|
||
# Panel models ---------------------------------------- | ||
|
||
#' @rdname find_parameters | ||
#' @export | ||
find_parameters.pgmm <- function(x, | ||
component = c("conditional", "all"), | ||
flatten = FALSE, | ||
...) { | ||
component <- match.arg(component) | ||
find_parameters.pgmm <- function(x, component = "conditional", flatten = FALSE, ...) { | ||
component <- validate_argument(component, c("conditional", "all")) | ||
s <- summary(x, robust = FALSE) | ||
|
||
l <- list( | ||
|
@@ -807,13 +803,9 @@ find_parameters.mira <- function(x, flatten = FALSE, ...) { | |
|
||
|
||
## For questions or problems with this ask Fernando Miguez ([email protected]) | ||
#' @rdname find_parameters | ||
#' @export | ||
find_parameters.nls <- function(x, | ||
component = c("all", "conditional", "nonlinear"), | ||
flatten = FALSE, | ||
...) { | ||
component <- match.arg(component) | ||
find_parameters.nls <- function(x, component = "all", flatten = FALSE, ...) { | ||
component <- validate_argument(component, c("all", "conditional", "nonlinear")) | ||
f <- find_formula(x) | ||
elements <- .get_elements(effects = "fixed", component = component) | ||
f <- .prepare_predictors(x, f, elements) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.