dplyr.adjustr_spec | R Documentation |
dplyr
Methods for adjustr_spec
ObjectsCore dplyr
verbs which don't involve grouping
(filter
, arrange
,
mutate
, select
,
rename
, and slice
) are
implemented and operate on the underlying table of specification parameters.
## S3 method for class 'adjustr_spec' filter(.data, ..., .preserve = FALSE) ## S3 method for class 'adjustr_spec' arrange(.data, ...) ## S3 method for class 'adjustr_spec' rename(.data, ...) ## S3 method for class 'adjustr_spec' select(.data, ...) ## S3 method for class 'adjustr_spec' slice(.data, ..., .preserve = FALSE)
.data |
the |
... |
additional arguments to underlying method |
.preserve |
as in |
## Not run: spec = make_spec(eta ~ student_t(df, 0, 1), df=1:10) arrange(spec, desc(df)) slice(spec, 4:7) filter(spec, df == 2) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.