Description Usage Arguments Details Value Note Author(s) References See Also Examples
Graph dependent variable vs. list of independent variables
1 | univarModDataCont(d_data, var_dep, var_indep, label_dep, label_indep, ...)
|
d_data |
data.frame |
var_dep |
name of dependent variable |
var_indep |
name of independent variable(s) |
label_dep |
label of dependent variable |
label_indep |
label of independent variable(s) |
... |
arguments passed to further functions |
Creates xyplots for all combinations
data-frame with percentage as number and character string
under continuous developement
Roland Rapold
none
see other functions in this R-package
1 2 3 4 5 6 7 8 9 10 11 12 | data(mtcars, package = "datasets")
str(mtcars)
univarModDataCont(d_data = mtcars
, var_dep = "mpg"
, label_dep = "Miles per Gallon"
, var_indep = c("cyl", "disp", "hp", "wt")
, label_indep = c("Zylinder", "disp", "PS", "Gewicht"))
univarModDataCont(d_data = mtcars
, var_dep = "mpg"
, label_dep = "Miles per Gallon"
, var_indep = c("cyl", "hp")
, label_indep = c("Zylinder", "PS"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.