17 questions
2
votes
0
answers
29
views
+50
Using shinylive to add a shiny app to the readme or an article of a pkgdown website on GitHub pages
I have some R packages on GitHub, mostly they contain small-ish datasets with a few helper functions for data preparation and plotting. I've started using GitHub pages to make the data and ...
0
votes
1
answer
47
views
How to stop Rshiny refresh data before I finish multiple input selection (before I hit enter)
I have 1 input in Rshiny that needs multiple inputs:
selectInput("selected_herd", "Select Herd", selected = herds_list[1], choices = herds_list, multiple = TRUE)
In the ...
1
vote
1
answer
87
views
Compiling Quarto with Shinylive PandocError
I want to render a html using quarto, following this tutorial
https://www.youtube.com/watch?v=6y2FnAugP8E
Within the quarto document I have a basic shinylive application
However, rendering raises the ...
0
votes
0
answers
33
views
'Maximum call stack size exceeded' when using tsibble::fill_gaps() in a shinylive webr app
I am using shinylive (v0.2.0) to write a Shiny (v1.8.1.1) app to run in the browser (Safari v17.5, 19618.2.12.11.6) using webr. The app takes data where each row represents an event and counts the ...
2
votes
0
answers
115
views
How to load local csv files into shinyLive code block within a Quarto document?
I want to create a quarto document that contains a code block that uses shinyLive to run an interactive graph.
At the moment, all the examples I have seen are either:
using R's inbuilt dummy data
or, ...
0
votes
1
answer
331
views
Using Quarto, how to render a self-contained HTML file that contains shinylive-r code?
Description of issue
I am trying to create a self-contained HTML file with Quarto, that contains a {shinylive-r} code block, but I am having issues with this.
Is it possible to do this? Please see ...
2
votes
1
answer
165
views
Shinylive file size limitations
I'm using a Shinylive application to analyze some datasets, and I'm noticing that at some point, the dataset is too large to load into Shinylive (e.g., a 100mb won't load), although it is fine in a ...
3
votes
1
answer
223
views
Shinylive won't allow downloading data tables as csv files
When I run this shinylive app on my local machine (Windows 11), it allows me to create a Gantt chart and table, which I can then download to a csv file. But when I host it on a GitHub page and click ...
3
votes
1
answer
828
views
Using shinylive to allow deployment of R shiny apps from a static webserver yields huge files
I am testing this new-ish method of deploying R shiny apps on dumb web servers by leveraging the WASM technology.
I have produced this simple app that doesn't need any data. Its only function is allow ...
0
votes
1
answer
315
views
Static version of R Shiny app using shinylive package failing to preload packages using webR
I'm trying to create a static version of my app and set it up as the Github Pages website. Here's a link to my folder containing the static version of the app created by the shinylive package https://...
0
votes
0
answers
88
views
Plotly plot not rendered when rendering two plotly plots at once using shinylive for R
I've written a relatively simple demo Shiny app in R using bslib and plotly.
In this app, when selecting an entry from the selectizeInput, two plotly plots are rendered, namely a scatter plot on the ...
2
votes
0
answers
288
views
A way for shinylive integration for serverless Quarto R Dashboard?
In recent months there's been significant development in Quarto Dashboards, and Shinylive integration in Quarto. However, I can't seem to find any resources on how to integrate Shinylive specifically ...
5
votes
0
answers
426
views
Failed to render a Shiny app into HTML static file using the shinylive package [closed]
I was able to successfully render the simplest hello shiny app successfully, it worked fine and fast!
# Copy "Hello World" from `{shiny}`
system.file("examples", "01_hello&...
4
votes
0
answers
204
views
Shinylive app doesn't render leaflet map tiles
I am trying to move an r-Shiny app onto a website using the shinylive package. The app is exported to HTML and it is functional, except that a leaflet map that is embedded in the site does not render ...
2
votes
0
answers
266
views
shinylive does not read data from external sources
I have been trying to read .csv file from my computer or online sources to incorporate in shinylive, but the dashboard does not show anything at all.
---
title: "Wine Data Analysis"
format:
...