我最近使用## Merge separately for each type (drop type)
top3A <- merge(top3[top3$type =="A",2:3,with=F],dat[dat$type=="B",c(1,3),with=F],by = c("id"))
top3B <- merge(top3[top3$type =="B",2:3,with=F],dat[dat$type=="A",c(1,3),with=F],by = c("id"))
## add type which we dropped before
top3A$type <- "A"
top3B$type <- "B"
## combine both result sets
top3 <- rbind(top3A,top3B)
## rename columns and reorder/resort results
colnames(top3)[2:3] <- c("x","x2")
top3 <- top3[order(type,-id),c(4,1,2,3),with = F]
和C++
使用wxwidget启动了GUI开发。
下载MinGW
时,是否需要单独安装wxWidget
库?
答案 0 :(得分:0)
是的,您需要安装wxwidgets才能使用formbuilder。我建议您使用mingw安装代码块,您可以找到http://www.codeblocks.org/downloads/26并按照此链接https://wiki.wxwidgets.org/CodeBlocks_Setup_Guide来编译wxwidgets。当您为第一个安装formbuilder时,我猜它会询问wxwidgets安装目录的位置,所以你需要这个,否则你可以稍后设置。
如果您有疑问,请告诉我