18 questions
2
votes
1
answer
50
views
TypeError $table.DataTable is not a function when rendering a shinylive app with R
I'm trying to develop a shiny app that can be hosted on a website via the r-shinylive app. In this app, I want to have two tables. I would like the user would be allowed to select cells in the upper ...
1
vote
0
answers
79
views
shinylive in quarto doesn't work in docker container running on Mac
I am rendering a quarto document with shinylive code/extension through a docker container on a Mac. I run into this error:
> docker run --platform=linux/amd64 --rm -u 1000:1000 -v "${PWD}"...
3
votes
1
answer
251
views
Cannot deploy shinylive shiny app in R with ggplot2 dependency
I have a simple demo app in a demo/app.R file that looks like this:
library(shiny)
library(ggplot2)
ui <- fluidPage(
titlePanel("GGPlot2 Example in Shinylive"),
sidebarLayout(
...
4
votes
0
answers
191
views
Using shinylive to add a shiny app to the readme or an article of a pkgdown website on GitHub pages [closed]
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
2
answers
83
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
238
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 ...
3
votes
0
answers
213
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
2
answers
808
views
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
269
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
371
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 ...
4
votes
1
answer
1k
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
505
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://...
4
votes
0
answers
430
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
618
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&...
5
votes
1
answer
295
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
337
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:
...
4
votes
0
answers
66
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
452
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 ...