I am trying to make a function that will give me a plot ready for indesign, illustrator or inkscape. When I try to do this, I have two problems that I cannot solve.
1) set the width and height of my graph (or just grobTable): The output that I get is very small, and when you scale it in illustrator, the font follows and becomes large. Therefore, I want to make graphs with manually specified widths and heights.
2) Sometimes the heading, note and outlet names become βinappropriateβ (for details, see the difference between graphs 1 and 2). This happens when short names.
library(gridExtra) library(ggplot2) data(diamonds) ## plot function kryds.row <- function(x,y, p=100, decor="%", digits=3, titel="", note="", red=219, green=55, blue= 153){ c <- table(x, y) s <- as.character(sum(c)) s <- paste("Antal svarpersoner=", s, sep=" ") j <- prop.table(c,1) r <- c(rownames(j),"Total") k <- c(colnames(j), "Total") j <- addmargins(j, margin =2, FUN = sum) j <- round(j, digits) j[]<-paste(j*p, decor, sep=" ") farve <- rgb(red,green,blue, maxColorValue =255) table <- tableGrob(j, cols = k, gpar.coretext = gpar(fontsize = 12), gpar.coltext = gpar(fontsize = 12,col="white"), gpar.rowtext = gpar(fontsize = 12, fontface="bold"), gpar.corefill = gpar(fill = rgb(255,255,255, maxColorValue =255), alpha = 1, col = NA), gpar.rowfill = gpar(fill = rgb(255,255,255, maxColorValue =255), alpha = 1, col = NA), gpar.colfill = gpar(fill = 0, alpha = 1 ,col= "white"), equal.width = TRUE, show.rownames = TRUE, show.rsep = TRUE, show.hlines = TRUE, show.csep = FALSE, show.vlines = FALSE, show.box = FALSE, padding.h = unit(15, "mm"), padding.v = unit(8, "mm"), core.just = "center", row.just = "left", separator = farve) hh <- grobHeight(table) ww <- grobWidth(table) border <- roundrectGrob(x=0.5, y=0.5, width=ww, height=hh, default.units="npc", r=unit(0.1, "snpc"), just="centre", name=NULL, gp=gpar(col="white", fill=farve, vp=NULL)) border2 <- roundrectGrob(x=0.5, y=0.5, width=ww, height=hh, default.units="npc", r=unit(0.1, "snpc"), just="centre", name=NULL, gp=gpar(fill=NA, col=farve, vp=NULL)) title <- textGrob(titel, x=unit(0.5,"npc") -0.5*ww + unit(5, "mm"), y=unit(0.5,"npc") +0.5*hh + unit(2, "mm"), vjust=0,hjust=0, gp=gpar(fontsize=12, fontface="bold")) footnote <- textGrob(note, x=unit(0.5,"npc") - 0.5*ww + unit(5,"mm"), y=unit(0.5,"npc") - 0.5*hh, vjust=1, hjust=0,gp=gpar( fontsize=10)) svarpersoner <- textGrob(s, x=unit(0.5,"npc") + 0.5*ww -unit(5, "mm"), y=unit(0.5,"npc") + 0.5*hh + unit(2, "mm"), vjust=0, hjust=1,gp=gpar( fontsize=10)) grid.newpage() gt <- gTree(children=gList(border,table,border2, title, footnote, svarpersoner)) grid.draw(gt) } # Plot it kryds.row(diamonds$color, diamonds$cut, titel="title", note="note") # plot 1 kryds.row(diamonds$cut, diamonds$color, titel="title", note="note") # plot 2 # Problems #1: The title, note and the j in the row.text is very badly placed in plot 1 but not plot 2 #2 I cannot set the width and height of my table
I have not cleared my code yet, so please tell us about it!