Sharon
Microsoft Employee
10 years agoCorrelation Plot
Description
Correlation plots can be used to quickly find insights, showing what otherwise would require lots of iterative slicing and dicing of your data.
Download this sample to see how...
ironryan77
Kudo Commander
9 years agoI love what you did here with this visual and it works perfectly in my PowerBI Desktop. However, when I try to view this from Power BI intranet, I get this error. I have tried to correct this by modifying the function and corrplot lines of code, with no success:
#verify if the column is numeric and non-constant
correctColumn <- function(someColumn) { !is.null(someColumn) && is.numeric(someColumn) && length(unique(someColumn)) > 1 }corrplot(M, method=method, order=order, type=type, addrect=addrect, #na.label = "?",
na.rm=TRUE,
mar = defMar, tl.col = tl.col, tl.cex=tl.cex, tl.srt=60, cl.ratio=0.2, cl.align="r",
number.digits=number.digits, number.cex=number.cex, addCoef.col=addCoef.col)How can I fix this?