univarModDataCont {rrMisc}R Documentation

Graph dependent variable vs. list of independent variables

Description

Graph dependent variable vs. list of independent variables

Usage

univarModDataCont(d_data, var_dep, var_indep, label_dep, label_indep, ...)

Arguments

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

Details

Creates xyplots for all combinations

Value

data-frame with percentage as number and character string

Note

under continuous developement

Author(s)

Roland Rapold

References

none

See Also

see other functions in this R-package

Examples

 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"))

[Package rrMisc version 0.48 Index]