print.assoc_scores {mclm} | R Documentation |
Print an object
Description
This base method prints objects; here the arguments specific to mclm implementations are described.
Usage
## S3 method for class 'assoc_scores'
print(
x,
n = 20,
from = 1,
freeze_cols = NULL,
keep_cols = NULL,
drop_cols = NULL,
from_col = 1,
sort_order = c("none", "G_signed", "PMI", "alpha"),
extra = NULL,
...
)
## S3 method for class 'conc'
print(x, n = 30, ...)
## S3 method for class 'fnames'
print(
x,
n = 20,
from = 1,
sort_order = c("none", "alpha"),
extra = NULL,
hide_path = NULL,
...
)
## S3 method for class 'freqlist'
print(x, n = 20, from = 1, extra = NULL, ...)
## S3 method for class 'slma'
print(x, n = 20, from = 1, ...)
## S3 method for class 'tokens'
print(x, n = 20, from = 1, extra = NULL, ...)
## S3 method for class 'types'
print(x, n = 20, from = 1, sort_order = c("none", "alpha"), extra = NULL, ...)
Arguments
x |
An object of any of the classes for which the method is implemented. |
n |
Maximum number of items in the object to be printed at once. |
from |
Index of the first item to be printed. |
freeze_cols |
Names of columns that should not be affected by the argument
If this argument is To avoid any columns for being frozen, |
keep_cols , drop_cols |
A vector of column names or Columns that are blocked from printing by these arguments are still available
to |
from_col |
Index of the first column to be displayed in the regular area
(among all selected columns, including frozen columns). If |
sort_order |
Order in which the items are to be printed. In general, possible values
are |
extra |
Extra settings, as an environment. Arguments defined here
take precedence over other arguments. For instance, if |
... |
Additional printing arguments. |
hide_path |
A character string with a regular expression or |
Value
Invisibly, x
.
For objects of class assoc_scores
, the output consists of two areas:
the 'frozen area' on the left and the 'regular area' on the right. Both
areas are visually separated by a vertical line (|
). The distinction between
them is more intuitive in explore()
, where the frozen columns do not respond
to horizontal movements (with the r
and l
commands). The equivalent in
this method is the from_col
argument.