一切都很好,但每当我选择Watts,Volts或Amps时,Dygraph图表很快就会恢复为扫描通道的图形。瓦数,电压和放大器图表快速显示,但随后又恢复为扫描输入。
有关如何让它停止恢复到扫描频道并将其保留在我选择的频道上的任何想法?
My dataset is here for you to upload. ui.R
func createSpinAnimation()
server.R
shinyUI(fluidPage(
navbarPage("Engineering Data",
tabPanel("Upload your Own File:",
sidebarLayout(
sidebarPanel(
fileInput('file1', 'Choose CSV File',
accept=c('text/csv',
'text/comma-separated-values,text/plain',
'.csv')),
tags$hr(),
checkboxInput('header', 'Header', TRUE),
radioButtons('sep', 'Separator',
c(Comma=',',
Semicolon=';',
Tab='\t'),
','),
radioButtons('quote', 'Quote',
c(None='',
'Double Quote'='"',
'Single Quote'="'"),
'"'),
selectInput("uploadChannels", label = "Choose Channel",
choices = NULL)
),
mainPanel(
dygraphOutput('graph')
))
)
)))
答案 0 :(得分:1)
@Batanichek是对的。我不得不修改#line
,它现在有效!
请注意我添加了第二个输入,这就是命令加倍的原因。
server.R