gpt4 book ai didi

r - Shiny 的 R : conditionalPanel and actionButton

转载 作者:行者123 更新时间:2023-12-04 12:33:28 25 4
gpt4 key购买 nike

我很难理解条件面板。

最初,我想显示一个面板,其中包含有关如何使用该应用程序(税收计算器)的说明。一旦用户将输入更改为他们的规范并按下更新,第二个条件面板就会出现。

目前该应用程序在第一轮运行,但随后按钮的计数增加到超过 0 和 1 导致它们无用。

其他帖子建议使用隔离(),我不确定在这种情况下我的意思是隔离。

#buttons

actionButton(inputId = "updateButton",
label = "Update"),
actionButton(inputId = "reset_button",
label = "Reset")

#conditional panels

conditionalPanel(
condition = ("input.updateButton == 0"),
h3("Instructions for calculator"),
),
conditionalPanel(
condition = "input.updateButton == 1",
tabPanel(
"Summary",
h3("Outputs calculated based on user inputs"),
)

如果我错过了什么,请告诉我。谢谢。

最佳答案

您可以尝试使用这样的余数进行破解:

第一个条件

("input.updateButton%2==0")

第二个条件

("input.updateButton%2==1")

关于r - Shiny 的 R : conditionalPanel and actionButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37462133/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com