powered by
Returns a plot of the bivariate relationship between two measures for each group/unit.
bivarplots(x, y, group, data)
A vector.
A data frame.
A series of figures that plot the bivariate relationship between two measures for each group/unit.
# NOT RUN { a <- runif(1000, min = 0, max = 1) b <- a + rnorm(1000, mean = 0, sd = 1) c <- rep(c(1:10), times = 100) data <- data.frame(a, b, c) bivarplots("a", "b", "c", data) # }
Run the code above in your browser using DataLab