6

我正在尝试使用 xtable 在 html 中创建一个表格,但我需要向特定td标签添加一个类,因为我要做一个动画。问题是没有 xtable 我不能这样做,因为它太慢了。

可能我需要用 xtable 来表示这个。

myRenderTable<-function(){
  table = "<table>"
  for(i in 1:4862){
    table = paste(table,"<tr><td>",i,"</td>",sep="")
    for(j in 1:5){

      if(j == 5){
        table = paste(table,"<td class ='something'>",i+j,"</td>",sep="")  
      }
      else{
        table = paste(table,"<td>",i+j,"</td>",sep="")
      }
    }
    table = paste(table,"</tr><table>")
  }
  return(table)
}

如果我使用 xtable 执行此操作,我的应用程序需要 15 秒,但如果我使用 myRederTable 函数执行此操作,我的应用程序需要 2 分钟,那么我该如何将此类放入tdxtable 中。

我正在使用 R 和闪亮。

4

1 回答 1

1

问题是您正在增长一个字符串:每次附加到它时,都必须将其复制到新的内存位置。首先将数据构建为数组,然后再将其转换为 HTML 会更快。

# Sample data
n <- 4862
d <- matrix( 
  as.vector( outer( 0:5, 1:n, `+` ) ),
  nr = 10, nc = 6*n, byrow=TRUE
)
html_class <- ifelse( col(d) %% 6 == 0, " class='something'", "" )

# The <td>...</td> blocks
html <- paste( "<td", html_class, ">", d, "</td>", sep="" )
html <- matrix(html, nr=nrow(d), nc=ncol(d))

# The rows
html <- apply( html, 1, paste, collapse = " " )
html <- paste( "<tr>", html, "</tr>" )

# The table
html <- paste( html, collapse = "\n" )
html <- paste( "<table>", html, "</table>", sep="\n" )
于 2013-03-30T15:48:22.530 回答