I have created a program using R studio. I wish to implement it using a dashboard. I am not able to find a solution for this

...I have created a program using R studio. I wish to implement it using a dashboard. I am not able to find a solution for this.

Hi @sudhar1811! Welcome to RStudio Community :slight_smile: We'll need a bit more information in order to help you here.

What kind of program have you made? An R script? A Shiny app? And when you say "implement it using a dashboard", can you give us more information? Do you mean that you have an analysis and want to build a graphical interface for it? That you've already built an interface and need somewhere to host it?

Thanks! If you get back to us with some more information, I'm sure we can help you get where you need to go :smiley:

i have developed a code for data profiling using R language. i wish to build a dashboard for the code that i had developed.

the requirements of the dashboard are to get the input file name and the file name for the output table and other file name for plots to be stored.

Hi Sudhar,

As @rensa said, there is more information needed. What you should do is:

  • explain what exactly you did and what your code should do. In your case: is it a Shiny app?
  • post a simple example code.
  • ask a specific question

I could imagine that you want to code a Shiny app, given that you need a dashboard. You can find information on that here:

https://shiny.rstudio.com/tutorial/

Happy to help if you need some assistance.

1 Like

It is like, i have developed a code(R program) to read a csv file and perform data profiling tasks.
It will form a table and an output pdf file for the plots.
The dashboard should have text boxes that get the file names to be read and perfrom the program developed.
Is this possible with R?

1 Like

That sort of stuff is definitely doable with R and Shiny :slight_smile: I'd recommend you follow the link @makrez posted on Shiny tutorials and explore some of the examples there to get a feel for what Shiny can do and how it works. If you can write R code, you can build a Shiny app!

i have an R code built but how to merge it with shiny?

Hey @sudhar1811, I'd recommend you take a look at the tutorial posted by @robur86, which includes a detailed guide on how Shiny works and how your code would be integrated with it. If you have any specific questions about the content in the tutorial, I'd be happy to have a go at them :slight_smile:

2 Likes