1
私はリーグのデータをフィルタリングできる光沢のあるアプリを作成しようとしています。これは私のラインを示し光沢のある選択パラメータをリンクする
library(shiny)
shinyServer(function(input, output) {
output$distPlot <- renderPlot({
list <- c(2.3, 2.5, 2.6, 2.8, 4.12, 5.3, 6.2, 8.2)
team <- c("A", "A", "A", "A", "B", "B", "B", "B")
time <- c(1,2,3,4,5,6,7,8)
league <- c("A", "B","A", "B","A", "B","A", "B")
df <- data.frame(list, team, time, league)
ggplot(df, aes(x = time, y = list, colour = team)) + geom_line()
})
})
:
#ui script
shinyUI(fluidPage(
titlePanel("Basic widgets"),
fluidRow(
column(3,
h3("Buttons"),
selectInput("select", label = h3("Select box"),
choices = list("Choice 1" = 1, "Choice 2" = 2), selected = 1)),
mainPanel(
plotOutput("distPlot")
)
)
))
そしてサーバースクリプト:今、次のスクリプトを使用してデータをプロット
list <- c(2.3, 2.5, 2.6, 2.8, 4.12, 5.3, 6.2, 8.2)
team <- c("A", "A", "A", "A", "B", "B", "B", "B")
time <- c(1,2,3,4,5,6,7,8)
league <- c("A", "B","A", "B","A", "B","A", "B")
df <- data.frame(list, team, time, league)
イム:これは、データセットの例です。両方のリーグ。しかし、私が達成したいのは、 "Choice1"と "Choice2"を選択でき、関連するデータポイントがグラフに表示されていることです。選択肢の選択肢をどのようにしてユニークなリーグの価値に結びつけることができるのですか?