i want change the format of a table in gWidgets R, show vertical lines, change background color.
library(gWidgets)
options(guiToolkit="RGtk2")
w <- gwindow("Example")
g <- ggroup(cont=w)
table <- gtable(mtcars,cont=g)
with gtable function no shows vertical lines for separate columns in the table
library(gWidgets)
options(guiToolkit="RGtk2")
w <- gwindow("Example")
g <- ggroup(cont=w)
table <- gdf(mtcars,cont=g)
and gdf adds a new column of rownames, that i dont need besides gdf changes the background color to "orange" or similar , how can i change or modify aesthetics in a table?