Get over that data fatigue

So you are looking at numbers everyday. These can be in excel sheets / google sheets while cleaning data or trying to get some insights out of the tables in various dashboards you see daily. These numbers might be currency , rates or just volume of any metrics you want to track. So how would you find the outliers across these tables, the best peforming KPI’s , correlations between various metrics....

August 15, 2020 · 3 min · 544 words · Senthil Thyagarajan

Whats Cooking ??

This R shiny app is for all the home chefs out there looking to try different recipes, especially now that we are all social distancing and looking at ways to keep us sane! (Yes, cooking is a form of meditation wherein the end, you have something to eat :D). From a database of 28000 + recipes, just enter the ingredients you wish to filter on and the type of cuisine and you will see all the recipes with your specified ingredients from your favorite cuisine!...

March 29, 2020 · 1 min · 98 words · Senthil Thyagarajan

Styling DataTables

Most of the shiny apps have tables as the primary component. Now lets say you want to prettify your app and style the tables. All you need understand how tables are built using HTML. This is how the default datatable looks like in the app. In order to build the html table I have used a function table_frame which can be used as a container in DT::renderdatatable. This function basically uses htmltools....

April 20, 2019 · 2 min · 371 words · Senthil Thyagarajan

Edit datatables in R shiny app

Tables are very much the standard way of representing data in dashboard along with visualizations. Wouldnt it be more useful if you could edit the values in the tables to trigger some calculations and update the values on the fly . These can be used for adjusting allocations or budgets in a project. Libraries The libraries which we will be using are shiny for the app itself, dplyr and DT for displaying and editing the tables....

April 18, 2019 · 3 min · 461 words · Senthil Thyagarajan

Download and Email reports in R Shiny app

Most of the dashboards / R shiny app are viewed by the people who want to view the underyling data without doing much analysis. While they view the KPI’s , the charts and the tables it would be also an important for them to take the results out of the app for meetings and presenations. One of way doing it is the traditionally downloading the reports. But to make it one step easier they could also be given an option to email these reports....

April 14, 2019 · 3 min · 449 words · Senthil Thyagarajan