Forum Discussion
Creating a Normal Distribution for an ID / Raw Score combination
I have a large dataset with about 1500 IDs. Within the same dataset, about 900 / 1500 of these IDs have a Raw Score column valued from 1 - 5 (by 0.1 increments) - Those IDs that don't have a Raw Score are blank in the Raw Score column. I have tried several different ways online to essentialy show my data in each of the 1 - 5 buckets on the x axis and have the SIDs normally distributed for each score. I have not been successful.
One way I have done this is to create a new table ' Normal Distribution' and have the following:
2 Replies
- AnonymousNot applicable
Hi Anonymous ,
Please have a try.
Create a measure.
Normal Distribution Measure = VAR MeanRawScore = AVERAGE('Table'[Raw Score]) VAR StdDevRawScore = STDEV.S('Table'[Raw Score]) RETURN NORM.DIST('Table'[Raw Score], MeanRawScore, StdDevRawScore, FALSE) * 1000How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ RongtieIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- AnonymousNot applicable
Okay I have put together the above measure - I just need to know now which components and how to use on the graph to show it. I assume normal distribution measure will be on Y axis. What do I put on X?