我在CentOS-7上安装eclipse titan ttcn-3,我需要安装一个相当于Ubuntu的xutil-dev库文件的库文件。我还想知道是否有相同的工作方法。
编辑:以下是我尝试在centos中安装xutils-dev时出现的错误 -
[root @ xxx yum.repos.d] #yum install xutils-dev
加载的插件:fastermirror,langpacks
基地| 3.6 kB 00:00:00
临时演员| 3.4 kB 00:00:00
更新| 3.4 kB 00:00:00
从缓存的主机文件加载镜像速度
没有包xutils-dev可用。
错误:无事可做
错误:没有匹配的要列出的包
答案 0 :(得分:0)
library(shiny)
library(quantmod)
library(dygraphs)
library(TTR)
ui <- shinyUI(fluidPage(
titlePanel("Simple Stock Charting App"),
sidebarLayout(
sidebarPanel(
textInput("symb", label = h3("Input a Valid Stock Ticker"), value = "GE")
),
selectInput("var", label = "bals", choices=list("RSI","Price","ADX")),
### uncomment for dygraphs chart
mainPanel(dygraphOutput("plot"),dygraphOutput("plot2"),dygraphOutput("plot3"))
)
))
server <- shinyServer(function(input, output) {
dataInput <- reactive({
prices <- getSymbols(input$symb, auto.assign = FALSE)
})
output$plot <- renderDygraph({renderPlot
dygraph(Ad(dataInput())) %>%dyRangeSelector()
})
output$plot2 <- renderDygraph({renderPlot
dygraph((RSI(Ad(dataInput()), n = 14))) %>%dyRangeSelector()
})
output$plot3 <- renderDygraph({renderPlot
dygraph((ADX(HLC(dataInput()),n = 14))) %>%dyRangeSelector()
})
})
shinyApp(ui,server)