0

this is my shiny output of my rpivottable output.

now

I want to have it like this. The combination of the frames on the left side to select the items.

future

What is the necessary option to change the style?

  output$table2 <- renderRpivotTable({
  rpivotTable(db2, aggregatorName = "Count")})

Thanks

Talcom

Community
  • 1
  • 1
Talcom
  • 11
  • 1
  • 5

1 Answers1

0

Just add whatever variables you want from db2 to be as rows and columns for example

rpivotTable(db2, aggregatorName = "Count",rows=c("Metric.ID", 
"Object.Name"),cols=c("Metric.Name","Grouping"))
MLS
  • 108
  • 14