Is it possible to include R visualizations in SAP Analytics Cloud? What types of visualizations can also be displayed, and how does it work?
Different types of visualizations can be included in SAP Analytics Cloud. The most common approach for customers is to use R- visualizations to display their data via the provided script.
The following video provides a comprehensive answer to your question.
Code Snippet
12345678910
# load package
library(wordcloud)
# get words
words <- SAP_S1_Scouting_Reports_V2$Tag
# get frequency
frequency <- SAP_S1_Scouting_Reports_V2$'Tag Count'
# generate word cloud
wordcloud(words, scale = c(3, 2), rot.per=0.2, colors=brewer.pal(8, "Dark2"))