Reputation: 1
I have a Tableau BI dashboard on which i want to generate Narrative Insights. My Data does not have relevant text for generating new sentences. How can i go about it?
I am quite comfortable in python but I am unable to make out how to go about it?
Upvotes: 0
Views: 103
Reputation: 1
I am working on package for data2text, called narrator. It is a template-based NLG framework, currently can be installed from github. narrator
Currently there are two types of narratives - descriptive and trend
# install.packages("devtools")
devtools::install_github("denisabd/narrator")
Here are some example outputs
library(narrator)
library(dplyr)
library(knitr)
sales %>%
narrate_descriptive(
measure = "Sales",
dimensions = c("Region", "Product"))
Upvotes: 0