我正在尝试使用 JGit 执行有冲突的项目中的所有合并场景。
是否有可能在实际合并之前获得冲突?换句话说,是否可以模拟与 JGit 的合并?
我的目标是为项目的所有合并场景访问每个文件的冲突行。
这是我的data.frame():
df <- data.frame(Round = rep(c("A", "B", "C" ),150), Group = rep(c("UP", "DOWN"),75),Task = rep(c("T1", "T2", "T3", "T4", "T5"),30), V2 = sample(c(0,1,2), 50, replace = T), V1 = sample(c(0,1,2), 50, replace = T))
dfmelt <- melt(df)
Run Code Online (Sandbox Code Playgroud)
我想尝试这样的情节facet_grid:
b <- ggplot(data=dfmelt, aes(x=value, fill=variable))
b <- b + geom_bar(stat="count", position = "dodge", width = 0.9)
b <- b + facet_grid(Group ~ Task, scales = "free")
Run Code Online (Sandbox Code Playgroud)
,产生以下内容:
我想摆脱更广泛的列,例如V1 at the position 0 of T1-UP,V1 at the …