Git Product home page Git Product logo

Comments (9)

smartinsightsfromdata avatar smartinsightsfromdata commented on August 18, 2024

The code below saves a csv. It works but I didn't tested extensively: any feedback is appreciated.

Please note that the code itself is not particularly optimised.

library(shiny)
library(rpivotTable)
library(rvest)

x <- read.csv("./forest/srs3a.csv", stringsAsFactors = FALSE)

ui <- fluidPage(sidebarLayout( sidebarPanel(
  selectizeInput('row','Row:', choices = c('County','Unit','NULL')),
  actionButton("go","Go"),
  actionButton("save","Save"),
  selectizeInput('state','State:',choices = c('Alabama','Arkansas','Florida','Texas')),
  actionButton("map","Map")),

  mainPanel(tabsetPanel(type="tabs",
                      tabPanel("Table",rpivotTableOutput("table")),
                      tabPanel("Map")  ))
))

server <- function(input, output, session)
{

  session$onSessionEnded(stopApp)
  
  myrows <- eventReactive(input$go,
                          {switch(input$row,
                                  "County" = c("COUNTYCD"),
                                  "Unit" = c("UNITCD"))
                         })
  
  
  output$table <- renderRpivotTable({

    rpivotTable(x,
                rows=myrows(),col="CSC",
                aggregatorName="Sum",
                vals="acres",
                rendererName="Table",
                inclusions=list(STNAME=list(input$state)),
                onRefresh = htmlwidgets::JS("function(config) {Shiny.onInputChange('myData', 
                                            document.getElementById('table').innerHTML); 
  }"))
  })
  
  summarydf <- eventReactive(input$myData,{
    input$myData %>%
      read_html %>%
      html_table(fill = TRUE) %>%
      .[[2]]
  })
  
  observeEvent( input$save, {
    if(nrow(summarydf() )<1) return()
    write.csv(summarydf(), file="./forest.csv")
  })
  
}

shinyApp(ui = ui, server = server)

from rpivottable.

EnricowithR avatar EnricowithR commented on August 18, 2024

from rpivottable.

smartinsightsfromdata avatar smartinsightsfromdata commented on August 18, 2024

The easy answer is no, you need shiny: its scaffolding offers the mean to access the web page and get the data displayed.

For example, while you can use rpivotTable in jupyter with the R kernel, jupyter does not offer at the moment the mechanism to get the data from rpivotTable as we do in shiny (of course it could be added in the future).

As an alternative, it would be interesting to try with shiny gadgets and rstudio addins.

from rpivottable.

smartinsightsfromdata avatar smartinsightsfromdata commented on August 18, 2024

@EnricowithR see example from @Avatoo to see if ti works for you
#68

Let me know if it doesn't work and I'll re-open

from rpivottable.

roshi4datascience avatar roshi4datascience commented on August 18, 2024

hi I want to create shiny aap which help me create pivot table and download results can you help me with example thanks in advance

from rpivottable.

ascotchmer avatar ascotchmer commented on August 18, 2024

The above code is very useful but only when the pivot is rendered as a table. Is it possible to export a csv when a barchart is selected? In other words, no matter how the data is rendered in rpivottable, the export will always be as though Table was the renderer.

from rpivottable.

omargiorgetti avatar omargiorgetti commented on August 18, 2024

rpivotTabletocsv

from rpivottable.

stvrd avatar stvrd commented on August 18, 2024

Hi,

There is an excellent solution for JS pivottable:
https://github.com/nicolaskruchten/pivottable/wiki/Optional-Extra-Renderers#exporting-to-tsv-demo
how can we use the optional extra renderer 'Export to tsv' in rpivottable?

from rpivottable.

ChristopherMarais avatar ChristopherMarais commented on August 18, 2024

Is there solution for this yet similar to the JS pivottable?

from rpivottable.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.