gpt4 book ai didi

r - eventReactive 对所有输入值使用react

转载 作者:行者123 更新时间:2023-12-02 00:49:37 28 4
gpt4 key购买 nike

我似乎不太了解 react 性。我认为自从我使用 eventReactive 定义 myPlot 以来,它只会在单击 actionButton 时更新绘图。但是,它会更新所有无功值。

然后,我尝试使用 isolate 将对 input$abscissa 和 input$ordinate 的调用包装在 eventReactive 中,但这导致绘图永远不会更新(轴标签除外)。

这是一个代表。按“绘图”按钮创建绘图。如果您更改其中一个主成分,绘图将更新。我该如何阻止它?

library(tidyverse)
library(shiny)

cmat <-
data.frame(
matrix(
c(2, 3, 5, 7, 11, 13, 17,
19, 23, 29, 31, 37, 41, 43,
47, 53, 59, 61, 67, 71, 73,
79, 83, 89, 97, 101, 103, 107,
109, 113, 127, 131, 137, 139, 149,
151, 157, 163, 167, 173, 179, 181,
191, 193, 197, 199, 211, 223, 227
),
nrow = 7
)
)
names(cmat) <- paste0(rep("V",7),1:7)

numPC <- dim(cmat)[[2]]-2

PC_choices <- paste0(rep("V",numPC),1:(numPC))

ordinals <- c('First', 'Second', 'Third', 'Fourth', 'Fifth',
'Sixth', 'Seventh', 'Eighth', 'Ninth', 'Tenth')

myPCs <- paste0(ordinals[1:min(numPC,10)],
rep(" Principal Component", min(numPC,10)))

ui <- fluidPage(
sidebarLayout(
sidebarPanel(
actionButton(
inputId = "refresh",
label = "Plot"
),
hr(),
h5("Choose the Principal Components"),
radioButtons(
inputId = "abscissa",
label = "Abscissa",
choices = myPCs
),
uiOutput(
outputId = "yAxis"
)
),
mainPanel(
plotOutput(
outputId = "pcplot"
)
)
)
)

server <- function(input, output){

output$yAxis <- renderUI({
radioButtons(
inputId = "ordinate",
label = "Ordinate",
choices = myPCs[-1*which(myPCs==input$abscissa)]
)
})

myPlot <- eventReactive(input$refresh,{
cmat %>%
ggplot(
aes(
x = .[,which(myPCs==input$abscissa)],
y = .[,which(myPCs==input$ordinate)],
fill = V6
)
) +
geom_point(shape = 21, color = "black", size = 4) +
geom_vline(xintercept = median(cmat[,which(myPCs==input$abscissa)]),
linetype = "dashed",
size = 1,
color = "yellow") +
geom_hline(yintercept = median(cmat[,which(myPCs==input$ordinate)]),
linetype = "dashed",
size = 1,
color = "yellow") +
scale_fill_gradientn(colors = c("white", "cyan", "blue", "black")) +
labs(
title = "PCPLOT",
x = input$abscissa,
y = input$ordinate,
fill = "Response"
) +
theme_bw()
})

output$pcplot <- renderPlot({
myPlot()
})

}

shinyApp(ui = ui, server = server)

最佳答案

问题在于 aes() 属性是延迟求值的。您需要使用一些元编程在代码运行时实际插入输入值,而不是在绘制时。使用

  ggplot(
aes(
x = .[,which(myPCs==!!(input$abscissa))],
y = .[,which(myPCs==!!(input$ordinate))],
fill = V6
)
)

这会将 input$abscissa 的值插入到 aes() 而不是表达式 input$abscissa。请注意,您不必为 xintercept=yintercept= 值执行此操作,因为它们在 aes() 之外。

关于r - eventReactive 对所有输入值使用react,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58805045/

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