Error running a simple shiny app in quarto #963
Answered
by
cscheid
ManuelSpinola
asked this question in
Q&A
-
I am trying to learn shiny in quarto, but I tried this very simple app and got me the following error. title: "Hello, world!"
|
Beta Was this translation helpful? Give feedback.
Answered by
cscheid
May 24, 2022
Replies: 3 comments 1 reply
This comment has been hidden.
This comment has been hidden.
-
Something like that?
|
Beta Was this translation helpful? Give feedback.
1 reply
-
Notice that you're using the variables d1 and d2 in a code cell with context: server, but defining them in a cell without that metadata. Those cells run in different execution contexts. We explain that here. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mcanouil
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Notice that you're using the variables d1 and d2 in a code cell with context: server, but defining them in a cell without that metadata. Those cells run in different execution contexts. We explain that here.