Description Usage Arguments Details Value Author(s) References See Also Examples
Summarize the characteristics of variables (columns) in a data frame.
1 | whatis(x, var.name.truncate = 20, type.truncate = 14)
|
x |
a data frame |
var.name.truncate |
maximum length (in characters) for truncation of variable names. The default is 20; anything less than 12 is less than the column label in the resulting data frame and is a waste of information. |
type.truncate |
maximum length (in characters) for truncation of variable type; |
The function whatis() provides a basic examination of some
characteristics of each variable (column) in a data frame.
A list of characteristics describing the variables in the data frame, x. Each component of the list has length(x) values, one for each variable in the data frame x.
variable.name |
from the |
type |
the possibilities include |
missing |
the number of |
distinct.values |
the number of distinct values in the variable, equal to |
precision |
the number of decimal places of precision. |
min |
the minumum value (if numeric) or first value (alphabetically) as appropriate. |
max |
the maximum value (if numeric) or the last value (alphabetically) as appropriate. |
John W. Emerson, Walton Green
Special thanks to John Hartigan and the students of 'Statistical Case Studies'
of 2004 for their help troubleshooting and developing the function whatis().
See also str.
1 2 3 4 5 6 7 8 9 10 11 12 | mydf <- data.frame(a=rnorm(100),
b=sample(c("Cat", "Dog"), 100, replace=TRUE),
c=sample(c("Apple", "Orange", "8"), 100, replace=TRUE),
d=sample(c("Blue", "Red"), 100, replace=TRUE))
mydf$d <- as.character(mydf$d)
whatis(mydf)
data(iris)
whatis(iris)
data(NewHavenResidential)
whatis(NewHavenResidential)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.