details | R Documentation |
Abbreviation: db
Provides feedback regarding a data frame which includes the variable names, the dimensions of the resulting data frame, the data type for each variable, and the values of the variables in the data file for the first and last rows of the data. In addition, an analysis of missing data is provided, listing the number of missing values for each variable and for each observation.
details(data=d, n_mcut=1, max_lines=30,
miss_show=30, miss_matrix=FALSE, var_labels=FALSE,
brief=getOption("brief"))
db(..., brief=TRUE)
data |
Data frame for which to provide the details. |
n_mcut |
For the missing value analysis, list the row name and number of missing values if the number of missing exceeds or equals this cutoff. |
max_lines |
Maximum number of lines to list of the data and labels. |
miss_show |
For the missing value analysis, the number of rows, one
row per observation, that has as many or missing values as |
miss_matrix |
For the missing value analysis, if there is any missing data, list a version of the complete data table with a 0 for a non-missing] value and a 1 for a missing value. |
var_labels |
The data frame consists of variable labels if |
brief |
If |
... |
Further arguments to be passed to or from methods consistent
with the R |
MISSING DATA
When brief
is set to FALSE
, details
provides a list the row of data with missing values, indicated by the standard R missing value code NA. To view the entire data table in terms of 0's and 1's for non-missing and missing data, respectively, invoke the miss_matrix=TRUE
option.
VARIABLE LABELS
Standard R does not provide for variable labels, but lessR
does. Variable labels can be provided for some or all of the variables in the data frames. One way to enter the variable labels is to read them from their own file with details
with labels
set to the full path name or URL
of the labels file, or just the file name if the labels file is in the same directory as the data file. Another method is to include the labels directly in the data file. To to this, specify the file of variable labels with the label="row2"
option. The web survey application Qualtrics downloads csv
files in this format.
For a file that contains only labels, each row of the file, including the first row, consists of the variable name, a comma, and then the label, that is, standard csv
format such as obtained with the csv
option from a standard worksheet application such as Microsoft Excel or LibreOffice Calc. Not all variables in the data frame that contains the data, usually d
, need have a label, and the variables with their corresponding labels can be listed in any order. An example follows.
I2,This instructor presents material in a clear and organized manner.
I4,Overall, this instructor was highly effective in this class.
I1,This instructor has command of the subject.
I3,This instructor relates course materials to real world situations.
If there is a comma in the variable label, then the label needs to be enclosed in quotes.
The lessR
functions that provide analysis, such as Histogram
for a histogram, automatically include the variable labels in their output, such as the title of a graph. Standard R functions can also use these variable labels by invoking the label
function, such as setting main=label(I4)
to put the variable label for a variable named I4 in the title of a graph.
David W. Gerbing (Portland State University; gerbing@pdx.edu)
Read
.
# read the built-in data set dataEmployee
# this provides an automatic call to details
d <- Read("Employee")
# manually request the details for d
details()
# manually request just variable names, labels for d
db()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.