univarModDataCont {rrMisc} | R Documentation |
Graph dependent variable vs. list of independent variables
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
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"))