我有一个闪亮的仪表板,在登录页面上只有一个文本框.用户输入显示相关数据的emailid.这很好用.但是我需要一个盒子/选项卡面板,当用户开始在文本输入中输入文本(emailid)时,它会在到达页面时迎接用户并消失.这可能吗?
output$introbox=renderUI(box(h3("Welcome to the page. Please enter your email id to proceed")),
conditionalPanel(condition=input.emailid=="")
Run Code Online (Sandbox Code Playgroud)
该框显示在页面的着陆上,但在输入文本时不会消失.
感谢任何帮助.谢谢
这是我的R 包的 GitHub 存储库
我已经能够在 Windows、MacOS 和 Linux 集群上从源代码安装这个包 devtools::install_github("ntthung/ldsr")
我正在尝试集成 Travis CI,并且在构建时出现以下错误
错误:dyn.load(file, DLLpath = DLLpath, ...) 中“ldsr”的包或命名空间加载失败:无法加载共享对象“/tmp/RtmpK7z3X6/Rinst2ef05609c709/00LOCK-ldsr/00new/ldsr/libs/ ldsr.so':/tmp/RtmpK7z3X6/Rinst2ef05609c709/00LOCK-ldsr/00new/ldsr/libs/ldsr.so:未定义符号:dpotrf_
我发现它dpotrf_属于一个名为libflame. 所以我Rload.R用 te 命令创建了文件,Sys.setenv("PKG-LIBS"="-llibflame")并将以下内容添加到.travis.yml
script:
- Rscript Rload.R
- R CMD build . --compact-vignettes=gs+qpdf
- R CMD check *tar.gz --as-cran
Run Code Online (Sandbox Code Playgroud)
但我仍然得到同样的错误。
我的包使用 Rcpp 和 RcppArmadillo。
请帮忙!谢谢。