ldensity {pscore} | R Documentation |
Density Plot for a Long Dataset
Description
Internal function only, not meant for general use Simple wrapper around ggplot2 functionaly to create density plots, potentially for many variables and coloured by group.
Usage
ldensity(data, melt = FALSE, x, facet, g, hist = FALSE)
Arguments
data |
A dataset (or melt()ed dataset) |
melt |
Logical whether to melt() dataset |
x |
name of variable for density |
facet |
A variable to use for facetting |
g |
A variable to use for grouping/colouring. If |
hist |
Logical whether to make a density plot or histogram (if TRUE). |
Value
A ggplot2 graph.
Examples
# simple facetted plot
pscore:::ldensity(mtcars, TRUE)
# simple coloured plot
pscore:::ldensity(mtcars, x = "mpg", g = "cyl")
[Package pscore version 0.4.0 Index]