“ERROR: path[1]=”“: No such file or directory” when publishing Parallel Coordinates Chart with Shiny

穿精又带淫゛_ 提交于 2019-12-01 13:17:36

I found the solution myself: showOutput needs the exact path to the parcoords-library, in my case: C:\Users\fklose\Desktop\Launching_Parcoords\libraries\widgets\parcoords.

So I changed the showOutput-line from

tabPanel("Multicolor",showOutput("chart1", "parcoords"))

to

tabPanel("Multicolor",showOutput("chart1", "libraries/widgets/parcoords"))

And the publishing worked :)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!