我有一個數據幀在我的服務器文件如下- [R閃亮變色
output$table<-renderTable({
P.Value<- c(lev.p,bart.p,turn.p,shap.p,jar.p,linm.p)
Test.Statistic<-c(lev.s,bart.s,turn.s,shap.s,jar.s,linm.s)
df<-data.frame(P.Value,Test.Statistic)
rownames(df, do.NULL = TRUE, prefix = "row")
rownames(df) <- c("Levene Test","Bartlett Test","Turning Point Test","Shapiro-Wilk Test","Jarque Bera Test","Linear Model Constant Drift Test")
df
})
和UI作爲
這產生了表如下
但是我想將表格的灰色輪廓變成另一種顏色,比如黑色。我如何去做這件事?
謝謝
元素的一個閃亮的應用程序中的樣式可以通過CSS來控制。看看[用CSS設計你的應用程序](http://shiny.rstudio.com/articles/css.html)以獲取更多信息。 – MrFlick 2015-02-24 03:52:32