I have a Box plot which is running on R. Now I would like to show the same box plot from Micorstrategy? Does it supprted by R Integration pack?
e.g I have simple R Code which is showing Box Plot on R console, how do I render same box plot on Microstrategy Report -
data <- read.csv("c:/R Poc/churn.csv", header = TRUE)
boxplot(data$CNT_LOW_BAL_L15D~factor(data$TARGET),main="Distibution of Count of low balance in last 15 days",xlab="0-Non Churners 1- Churners",ylab="count",col="grey")
e.g I have simple R Code which is showing Box Plot on R console, how do I render same box plot on Microstrategy Report -
data <- read.csv("c:/R Poc/churn.csv", header = TRUE)
boxplot(data$CNT_LOW_BAL_L15D~factor(data$TARGET),main="Distibution of Count of low balance in last 15 days",xlab="0-Non Churners 1- Churners",ylab="count",col="grey")