闪亮的示例文件未显示正确的界面

时间:2019-04-08 17:13:57

标签: r shiny

我安装了shiny软件包,但是在运行示例文件runExample("01_hello")之后,弹出窗口没有显示预期的界面(例如,没有滑动条,并且在手动输入后没有任何反应一些垃圾箱)。如果我也在外部浏览器中查看,也会看到相同的效果。请参阅下图以获得更好的理解。我尝试过类似的情况,而且总是一样的。

library(shiny)
runExample("01_hello")

打开的应用程序如下所示:

enter image description here

但应如下所示:

enter image description here

我刚刚为Windows10(64位)安装了最新版本的R和RStudio,但是仍然有问题...还尝试更新图形驱动程序,以防问题出在哪里,但到目前为止还没有解决方案。有提示吗?

这里的会话信息。

R version 3.5.3 (2019-03-11)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200)

Matrix products: default

locale:
[1] LC_COLLATE=German_Germany.1252  LC_CTYPE=German_Germany.1252   
[3] LC_MONETARY=German_Germany.1252 LC_NUMERIC=C                   
[5] LC_TIME=German_Germany.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] dplyr_0.8.0.1

loaded via a namespace (and not attached):
 [1] Rcpp_1.0.1       crayon_1.3.4     assertthat_0.2.1 R6_2.4.0        
 [5] magrittr_1.5     pillar_1.3.1     rlang_0.3.4      rstudioapi_0.10 
 [9] tools_3.5.3      glue_1.3.1       purrr_0.3.2      xfun_0.6        
[13] compiler_3.5.3   pkgconfig_2.0.2  knitr_1.22       tidyselect_0.2.5
[17] tibble_2.1.1

1 个答案:

答案 0 :(得分:0)

最后我想我得到了答案。我的R库保存在与Shiny不兼容的路径下(意味着该路径具有à等特殊符号)。我解决了删除库并在新路径C:/ Program Files / R / R-3.5.3 / library中重新安装它们的问题。为此,可能需要以管理员身份运行R-Studio。

非常感谢您的帮助:)