set.seed (1234)
myd <- data.frame (x1 = rnorm (1000, 15, 5), x2 = sample (c("A", "B", "C"), 1000, replace = TRUE), x3 = sample (c(1,2,2), 1000, replace = TRUE))
# fluctuation plot
require (ggplot2)
myd <- data.frame (x1 = rnorm (1000, 15, 5), x2 = sample (c("A", "B", "C"), 1000, replace = TRUE), x3 = sample (c(1,2,2), 1000, replace = TRUE))
# fluctuation plot
require (ggplot2)
ggfluctuation(table(myd$x2, myd$x3))+theme_bw()
ggfluctuation(table(myd$x2, myd$x3), type="colour")+theme_bw()
ggfluctuation(table(cut (myd$x1,4), myd$x3), type="colour")+theme_bw()
ggfluctuation(table(cut (myd$x1,5), myd$x3))+theme_bw()
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.