有人可以帮助我删除RpivotTable中出现的总计,如图所示。我也在添加代码。 长期坚持下去,请提供指导。
致谢
library(rpivotTable)
rpivotTable(data = mtcars, subtotals = FALSE, rows = c( "cyl"),cols=c("carb"), vals = "mpg", aggregatorName = "Sum", rendererName = "Table", width="50%", height="550px")
答案 0 :(得分:2)
小计可以在下面的第六行显示:
library(pivottabler)
pt <- PivotTable$new()
pt$addData(data)
pt$addColumnDataGroups("Date")
pt$addRowDataGroups("SKU.ID" , addTotal=FALSE)
pt$addRowDataGroups("Location" , addTotal=FALSE)
pt$renderPivot()
pt$defineCalculation(calculationName="Total Sales Qty", summariseExpression="sum(Sales_Qty, na.rm=TRUE)")
pt$defineCalculation(calculationName="TotalSalesQty")
pt$renderPivot()
答案 1 :(得分:0)
当前版本的rPivottable不允许您删除总计,但是下一版本可能会删除。
答案 2 :(得分:0)
我通过CSS使它像这样工作(一种变通方法,因为只有显示器是隐藏的):
mypivottable <- htmlwidgets::prependContent(mypivottable,
htmltools::tags$style(
".pvtTotalLabel, .colTotal, .rowTotal, .pvtGrandTotal { display: none; }"
)
)
虽然我认为它在Shiny应用程序中不起作用。
答案 3 :(得分:0)
如果您添加了szapiszapo中的解决方案,则适用于Shiny应用程序
tags$style( ".pvtTotalLabel, .colTotal, .rowTotal, .pvtGrandTotal { display: none; }" )
到用户界面。例如
ui <- fluidPage(
tags$style(
".pvtTotalLabel, .colTotal, .rowTotal, .pvtGrandTotal { display: none; }"
),
rpivotTableOutput("pivot_table", height = "100%")
)