All Questions
Tagged with r-shinylive r
13 questions
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 ...
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 ...
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:
...
3
votes
0
answers
50
views
Add text to loading screen of shinylive app (R)
Is it possible to add text under the loading animation in a shinylive app? (I want to tell users how long to expect the site to take to load.)
1
vote
1
answer
300
views
Is it possible to pre-install packages to shinylive app
Is it possible to pre-install packages in a shinylive for R app, instead of installing them with webr::install at runtime?
(In my opionion, this has some advantages: It causes less requests to other ...