Description Usage Arguments Details Value Author(s) See Also Examples
R implementation of the SPSS NUMERIC
function. Creates new numeric variables, which get appended at the end of the dataset.
1 | xpssNumeric(x, varname = NULL, fill = NA)
|
x |
a (non-empty) data.frame or input data of class |
varname |
atomic character or character vector with the name of the variables which should be created. |
fill |
atomic numeric or atomic character values, which fill the variables. By default the value is NA for all new variables. It is possible to assign each new variable an own value to fill with. |
xpssNumeric creates new numeric variables, which get appended at the end of the dataset. The new variables are as long as the selected dataset. By default the new variables are blank and get filled with NA, otherwise every case for the selected variable get filled with the speficied value.
Returns the input data extended by the new variables.
Andreas Wygrabek
1 2 3 4 | ## Not run:
xpssNumeric(fromXPSS, varname = c("A"), fill = c(NA))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.