plot_points {daltoolbox} | R Documentation |
Plot points
Description
This function creates a scatter plot using ggplot2.
Usage
plot_points(data, label_x = "", label_y = "", colors = NULL)
Arguments
data |
data.frame contain x, value, and variable |
label_x |
x-axis label |
label_y |
y-axis label |
colors |
color vector |
Value
returns a ggplot graphic
Examples
x <- seq(0, 10, 0.25)
data <- data.frame(x, sin=sin(x), cosine=cos(x)+5)
head(data)
grf <- plot_points(data, colors=c("red", "green"))
plot(grf)
[Package daltoolbox version 1.2.707 Index]