I’m getting pivot table output without repetition of column and rows labels using RpivotTable package in R (kindly run the codes to see the result). I need the output layout in Tablular form with repetition of labels (like the one attached as image). It can be done through Javascript in R. I have tried a lot but couldn’t get the desired results.
 
I need something like this

My code:
 
library(rpivotTable)
library(dplyr)
library(readr)
library(shiny)
library(openxlsx)
 
ui
 
ui = fluidPage(
fluidRow( rpivotTableOutput(“pivot”)))
 
server
 
server = function(input, output) {
output$pivot <- renderRpivotTable(rpivotTable::rpivotTable(mtcars, rows = c(
“vs”,”gear” ),cols=c(“am”,”cyl”),vals = “mpg”, aggregatorName = “Sum”,rendererName =
“Table”,width=”50%”, height=”550px”))}
shinyApp(ui = ui, server = server)
Saad Default Asked on November 20, 2018 in Database.
Add Comment
  • 0 Answer(s)
  • Your Answer

    By posting your answer, you agree to the privacy policy and terms of service.