forked from tidyverse/ggplot2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeom-path.r
24 lines (17 loc) · 890 Bytes
/
geom-path.r
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
vcontext("geom-path")
set.seed(1)
nCategory <- 5
nItem <- 6
df <- data.frame(category = rep(LETTERS[1:nCategory], 1, each = nItem),
item = paste("Item#", rep(1:nItem, nCategory, each = 1), sep = ''),
value = rep(1:nItem, nCategory, each = 1) + runif(nCategory * nItem) * 0.8)
df2 <- df[c(1, 2, 7, 8, 13, 14, 3:6, 9:12, 15:nrow(df)), ]
ggplot(df) + geom_path(aes(x = value, y = category, group = item))
save_vtest("lines")
ggplot(df2) + geom_path(aes(x = value, y = category, group = item))
save_vtest("lines with changed data order, should have same appearance")
ggplot(df) + geom_path(aes(x = value, y = category, group = item, colour=item))
save_vtest("lines, colour")
ggplot(df2) + geom_path(aes(x = value, y = category, group = item, colour=item))
save_vtest("lines, colour, with changed data order, should have same appearance")
end_vcontext()