Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
50 views

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 ...
Jeff Hoover's user avatar
1 vote
0 answers
79 views

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}"...
mindlessgreen's user avatar
3 votes
1 answer
251 views

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( ...
TheDza's user avatar
  • 385
4 votes
0 answers
191 views

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 ...
Alex P's user avatar
  • 1,504
0 votes
2 answers
83 views

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 ...
Ann's user avatar
  • 123
1 vote
1 answer
238 views

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 ...
Kuehlschrank's user avatar
3 votes
0 answers
213 views

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, ...
Matthew Nocete's user avatar
0 votes
2 answers
808 views

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 ...
Matthew Tansley's user avatar
2 votes
1 answer
269 views

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 ...
bschneidr's user avatar
  • 6,357
3 votes
1 answer
371 views

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 ...
Michael Willox's user avatar
4 votes
1 answer
1k views

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 ...
Faustin Gashakamba's user avatar
0 votes
1 answer
505 views

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://...
Dasha Semochkina's user avatar
4 votes
0 answers
430 views

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 ...
Giandomenico Bisaccia's user avatar
5 votes
0 answers
618 views

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&...
toxin's user avatar
  • 169
5 votes
1 answer
295 views

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 ...
SGE's user avatar
  • 460
2 votes
0 answers
337 views

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: ...
Majid Zaremehrjardy's user avatar
4 votes
0 answers
66 views

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.)
snaut's user avatar
  • 2,682
1 vote
1 answer
452 views

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 ...
snaut's user avatar
  • 2,682