我的代码如下:
t_af_ts_outcomes <- datatable( data = cars
, options = list( bFilter = 0
, bLengthChange = 0
, paging = F
, info = F
)
)
output$v_af_ts_outcomes <- renderDataTable( t_af_ts_outcomes )
无论如何我可以删除行号吗?
答案 0 :(得分:1)
在rownames = FALSE
函数中设置参数datatable()
。