These methods are only defined for backward compatibility with older
versions of papaja. In the past, the column names ofapa_results_table
s
were less standardized than they are today. In order to maintain backwards
compatibility, it is still possible to extract columns with the old columns names,
because we here provide aliased indexing. Note that aliased indexing will be
defunct in a future release of papaja.
# S3 method for apa_results_table
$(x, name)# S3 method for apa_results_table
[[(x, i, exact = TRUE)
# S3 method for apa_results_table
[(x, i, j, ..., drop = TRUE)
A (vector of) character values as extracted from an object of class
apa_results_table
.
Object from which to extract element(s).
A literal character string or a name (possibly backtick
quoted). For extraction, this is normally (see under
‘Environments’) partially matched to the names
of the object.
Indices specifying elements to extract. See base::Extract()
for details.
Controls possible partial matching of [[
when
extracting by a character vector (for most objects, but see under
‘Environments’). The default is no partial matching. Value
NA
allows partial matching but issues a warning when it
occurs. Value FALSE
allows partial matching without any
warning.
For matrices and arrays. If TRUE
the result is
coerced to the lowest possible dimension (see the examples). This
only works for extracting elements, not for the replacement. See
drop
for further details.