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

前端 未结 1 1071
耶瑟儿~
耶瑟儿~ 2021-01-16 05:18

I have a problem that seems to be quiet common but for which I haven\'t found a solution yet:

When trying to publish a webapp using rCharts Parcoords, I get this err

相关标签:
1条回答
  • 2021-01-16 06:01

    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 :)

    0 讨论(0)
提交回复
热议问题