Forum Discussion
box and whisker visualisation
- 8 years ago
I ended up using the R visualisation and used ggplot2 library using geom_boxplot which after a bit of messing about does the job.
The R plotly library looks to have more featues and allows data labels. I could get it to work in R Studio but it didn't seem to work in power bi very well which was a shame.
Hi gooranga1,
Maybe you can try to summarize the data first, there could be less computing. In my example, I can try to create a new table like this.
Table 4 =
SUMMARIZE (
'Sales',
'Product'[Color],
Sales[Quantity],
"sumQuantity", SUM ( Sales[Quantity] )
)
Best Regards!
Dale
Thanks v-jiascu-msft
I did have a think how I could summarise the data but not sure I can. We have thousands of doors that can get opended multiple times in a day. We would like to get acurate overview of the opening times of the doors. Not sure how I could summarise that data to get this as I think I need the raw data to get acurate figures. I will keep looking at it though and see If I can find a way to do this.
Cheers
- gooranga18 years ago
Power Participant
I ended up using the R visualisation and used ggplot2 library using geom_boxplot which after a bit of messing about does the job.
The R plotly library looks to have more featues and allows data labels. I could get it to work in R Studio but it didn't seem to work in power bi very well which was a shame.