是的,这是可能的,您应该发布完整的代码,否则无法确定是什么导致了您的问题。这是一个非常简单的例子:
ui.R
library(shiny)
library(ggvis)
##
shinyUI(fluidPage(
sidebarLayout(
sidebarPanel(
selectInput(
inputId="selectCol",
label="y-variable",
choices=(names(data))
)
),
mainPanel(
ggvisOutput("plot1"),
br(),
ggvisOutput("plot2")
)
)
))
server.R
library(shiny)
library(ggvis)
##
shinyServer(function(input, output) {
cols <- names(data)
colIdx <- reactive({
match(c("x",input$selectCol),cols)
})
dataReactive <-reactive({
df <- data[, colIdx()]
names(df) <- c("x","y")
df
})
dataReactive %>%
ggvis(x=~x,y=~y) %>%
layer_points() %>%
bind_shiny("plot1")
dataReactive %>%
ggvis(x=~x) %>%
layer_histograms(width=1) %>%
bind_shiny("plot2")
})
global.R
library(shiny)
library(ggvis)
##
set.seed(123)
data <- data.frame(
x=sample(1:50,40,replace=TRUE),
col2=rnorm(40,1,5),
col3=rexp(40,3))
这是应用程序通过外部浏览器运行时的样子: