How to update namespace in R

Hi all,

I get an error while running the shiny applications. Wanted to check how to update the namespace:protoDash ?

Error: 'run_app' is not an exported object from 'namespace:protoDash'

Hi @vinayprakash808,
I'm not familiar with the protoDash package, but the error "[function] is not an exported object from [package]" usually means that you are trying to run a function that R can't find in the packages that you have loaded.

It's a little hard to tell what's going on from the code you posted, and it might help if you could provide a small example of your app. But I'm going to take a guess that the function you meant to use is runApp, in the shiny package. Try replacing run_app with runApp in your app and see if the code runs then?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.