replaceRotTag {foodwebWrapper} | R Documentation |
insert html tags for rotating text
replaceRotTag(x, l, dims)
x |
return value of readLines(), HTML code containing data table |
l |
return values of spanTag() |
dims |
return value of dim() |
returns modified version of HTML code containing data table
if(interactive()){
load("data/x_x.RData")
load("data/x_l.RData")
load("data/x_m3.RData")
x<-replaceRotTag(x_x,x_l,dim(x_m3))
}