Integrating shiny apps

Hi All,

Greetings of the day...!

I have 3 sample shiny apps viz., "sample1", "sample2", "sample3".
I would like to access "sample2" shiny app and "sample3" shiny app, through 'tabItem1' and 'tabItem2' in shiny app "sample1".

How can I link sample2.R and sample3.R files to sample1.R ?

Is there any function I should use to link ?
Can anyone provide me sample code for this linkage of two shiny app files to a home page which is sample1.R?

Any help will be appreciable.

Thanks a lot.

You can use iframes to do that https://stackoverflow.com/questions/33020558/embed-iframe-inside-shiny-app

1 Like

@PorkChop is correct, iframes are the best way to "integrate" shin apps (or any other web page) into your app. I just wanted to add the note that this will not allow you to access or share data between the two apps, it's purely taking one shiny app and placing it inside another.

1 Like

A post was split to a new topic: Could you recommend an online course for shiny and shiny dashboard ?