Usage
view_df(x, weight.by = NULL, altr.row.col = TRUE, show.id = TRUE, show.type = FALSE, show.values = TRUE, show.labels = TRUE, show.frq = FALSE, show.prc = FALSE, show.wtd.frq = FALSE, show.wtd.prc = FALSE, show.na = FALSE, sort.by.name = FALSE, wrap.labels = 50, hide.progress = FALSE, CSS = NULL, encoding = NULL, file = NULL, use.viewer = TRUE, no.output = FALSE, remove.spaces = TRUE)
Arguments
weight.by
weight factor that will be applied to weight all cases.
Must be a vector of same length as the input vector. Default is
NULL
, so no weights are used.
altr.row.col
logical, if TRUE
, alternating rows are highlighted with a light gray
background color.
show.id
logical, if TRUE
(default), the variable ID is shown in the first column.
show.type
logical, if TRUE
, the variable type is shown in a separate
row respectively column.
show.values
logical, if TRUE
(default), the variable values are shown as additional column.
show.labels
logical, if TRUE
(default), the value labels are shown as additional column.
show.frq
logical, if TRUE
, an additional column with frequencies for each variable is shown.
show.prc
logical, if TRUE
, an additional column with percentage of frequencies for each variable is shown.
show.wtd.frq
logical, if TRUE
, an additional column with weighted
frequencies for each variable is shown. Weights strem from weight.by
.
show.wtd.prc
logical, if TRUE
, an additional column with weighted
percentage of frequencies for each variable is shown.
Weights strem from weight.by
.
show.na
logical, if TRUE
, NA
's (missing values)
are added to the output. sort.by.name
logical, if TRUE
, rows are sorted according to the variable
names. By default, rows (variables) are ordered according to their
order in the data frame.
wrap.labels
numeric, determines how many chars of the value, variable or axis
labels are displayed in one line and when a line break is inserted.
hide.progress
logical, if TRUE
, the progress bar that is displayed when creating the
output is hidden. Default in FALSE
, hence the bar is visible.
encoding
string, indicating the charset encoding used for variable and
value labels. Default is NULL
, so encoding will be auto-detected
depending on your platform (e.g., "UTF-8"
for Unix and "Windows-1252"
for
Windows OS). Change encoding if specific chars are not properly displayed (e.g. German umlauts).
file
destination file, if the output should be saved as file.
If NULL
(default), the output will be saved as temporary file and
openend either in the IDE's viewer pane or the default web browser.
use.viewer
If TRUE
, the HTML table is shown in the IDE's viewer pane. If
FALSE
or no viewer available, the HTML table is opened in a web browser.
no.output
logical, if TRUE
, the html-output is neither opened in a browser nor shown in
the viewer pane and not even saved to file. This option is useful when the html output
should be used in knitr
documents. The html output can be accessed via the return
value.
remove.spaces
logical, if TRUE
, leading spaces are removed from all lines in the final string
that contains the html-data. Use this, if you want to remove parantheses for html-tags. The html-source
may look less pretty, but it may help when exporting html-tables to office tools.