univarModDataCont: Graph dependent variable vs. list of independent variables

Description Usage Arguments Details Value Note Author(s) References See Also Examples

View source: R/Graphics.R

Description

Graph dependent variable vs. list of independent variables

Usage

1
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

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

rrMisc documentation built on June 25, 2021, 3 a.m.