Blogs / SAP / SAP Analytics Cloud / R Visualizations / SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts

SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts

Sep 28, 2020

SHARE

This blog series is about leveraging R Visualizations in SAP Analytics Cloud. In this blog, we will explore how to add visualizations inside tooltips to engage the dashboard users with customized interactivity. This powerful feature of having a visualization within a tooltip can be achieved in the SAP Analytics Cloud using the ‘Highcharter’ package in R Visualization. This allows you to place rich, cutting-edge visualizations into tooltips, revealing them on-hover of individual marks. The data point you hover on filters the underlying data in the embedded charts to provide a confined picture of the data.

Advantages of having visualization within a tooltip

A visualization within a tooltip is a splendid way to augment your dashboards and to avoid clutter. If you need to add a few dimensions or measures to your perfectly designed dashboard, do not worry about changing the entire design of the dashboard instead you can use this custom tooltip feature and show that additional info in visualizations inside the tooltip. This way, you can save space too. This also makes the dashboard more interesting and the user will be excited to explore more and dive deep into the analysis.

Visualization within tooltip

Let us see how to add customized visualizations within the tooltip. You can see the powerful customized tooltip having a visualization inside it in action below.

SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
Profit by Year chart in tooltip for each city

R Libraries used

  • Highcharter library

Highcharter is an R wrapper of Highcharts JavaScript library. Highcharts is a very simple API yet it provides more advanced features and is very flexible too. It has a wide range of visualizations and interesting customized interactivity for those visualizations. Highcharter brings all the powerful Highcharts visualization capabilities with a simple configuration syntax.

  • Tidyverse library

The Tidyverse is a collection of R packages designed for data wrangling and data science. We use this package to transform our input data frame to a format accepted in Highcharts visualizations.

The main visualization here shows a bubble chart with city grouped by country over profit and discount %. The size of the bubble correlates to the sales amount. Let us see how to build the trend ‘Profit by Year’ inside the tooltip for each city bubble. This allows you to analyze the correlation between profit and discount % in each city and the relevant additional info – profit trend for each city can be inferred from the trend chart inside the tooltip.

Initializing the Data Frame in R Widget

Add R visualization widget to your canvas and select a data source. And add rows and columns to the Input Data section. To know more about creating and adding data frames, check here. Select the required fields, in this case– Country, City and Year dimensions and Profit, Discount % and Sales amount measures.

SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
R Data Frame initialized with required rows & columns

Adding R Script

After the initial Data Frame has been set up, use the Edit Script option from the Builder pane to set up R script to visualize the data. First, we need to transform the data frame to the required format using below R script.

SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
Data transformations using Tidyverse package
SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
Continuation of R script for data transformations

data.frame(), tbl_df(), arrange(), desc(), distinct(), select(), nest(), mutate(), map(), left_join() are some of the functions in the Tidyverse package we use for transforming our data to the required format supported in Highcharter Bubble Chart. You can learn more about the Tidyverse package here. And then using that transformed data, create a bubble chart for city grouped by country over profit, discount measures and the sales amount measure provides the size of bubbles.

SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
Bubble chart with trend visualization inside tooltip using Highcharter package

Customizations

  • hchart()- this generic function can create various R objects on the fly. You must pass the data and choose the type of chart. In our case, ‘point’ is for the bubble chart type and then define the aesthetic mappings for each variable in ‘hcaes()’ function. In this scenario, ‘x’, ‘y’, ‘name’, ‘size’, ‘group’ variables for bubble chart need to be defined.
  • hc_colors()- this function is used to set colors to Highcharter objects.
  • hc_tooltip()- is used to set tooltip options for Highcharter objects. It allows us to render any kind of HTML inside the tooltip.
  • tooltip_chart()- This is the most significant function for adding visualization inside tooltips. This helper function in Highcharter R package allows us to have any kind of visualization inside the tooltip and to reveal them on hover of individual marks. This function should be used for the ‘pointFormatter’ argument value with ‘useHTML’ argument value as ‘TRUE’ inside ‘hc_tooltip’. In this function for ‘accessor’ argument, you need to specify the transformed data frame name.

Now you can save the application and run it. You will be able to see the cool customized tooltip, which is getting rendered when you hover the individual bubbles. By this, you will be able to infer the profit trend for each city in addition to the correlation between profit and discount %.

SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
Trend visualization inside tooltip of each bubbles

Some more examples for rich customized tooltips having visualizations inside it are below,

SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
Scatter plot for each country over profit & discount % in tooltip
SAP Analytics Cloud – R Visualization Series 6- Customized Tooltip – Embedding Charts
Segments by sales amount visualization in tooltip for each year

These splendid visualizations are also created in SAP Analytics Cloud using R visualizations. In subsequent blogs of this series, we will continue to learn more about leveraging R Visualizations in SAP Analytics Cloud.


Corporate HQ:
5920 Windhaven Pkwy, Plano, TX 75093

+1 888-227-2794

+1 972-232-2233

+1 888-227-7192

solutions@visualbi.com


Copyright © Visual BI Solutions Inc.

Subscribe To Our Newsletter

Subscribe To Our Newsletter

Join our mailing list to receive the latest news and updates from our team.

You have Successfully Subscribed!

Share This!

Share this with your friends and colleagues!