cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
PVS07
Helper III
Helper III

R visual sort order

Hi All,

Not sure if this is the right place to request as this is about a R visual. However, as the visual is part of the Power BI report I thought I might give it a try. Let me know if this is not the right forum.

 

I have developed a Power BI report with custom sort of geographic hierarchies. There are 4 levels and I have created the right sort order in the data tables. Using this sort order I have built 2 visuals, a Matrix table and an R bar chart. I used the R chart as I needed error bars and it is not available in other visuals. I am very new to R, searched the internet and I was able to build the bar chart with error bars.

My issue is the matrix table is working with the custom sort that I have built and is in the right order. However the R visual is in alphabetical order. I have searched the internet and was able to find code that will allow manual sorting of the items but this will work only if it is static. My chart is meant to be dynamic and the geography items change when I apply the filter. 

 

Is it possible to get the R visual to follow the custom sort order that I have built. If you can help me that will be greatly appreciated. 

 

Please see the screenshot below for more detail and here is my R code for your reference/review

 

Thank you.

 

library(ggplot2)
ggplot(unique(dataset), aes(x = LGA, y = Rate)) +
geom_point(size = 5, stroke = 0, shape = 18, colour="brown") +
geom_point() + geom_line() +
geom_errorbar(aes(ymin = LL, ymax = UL), width=0, position=position_dodge(.9), colour="brown", alpha=0.3, size=4) +
# remove background
theme_bw()+
# remove grid
theme(panel.grid.major = element_blank()) +
# axis labels placed at a 45* angle:
theme(axis.text.x = element_text(angle=45, hjust = 1))+
# x axis text size
theme(axis.text.x = element_text(size = 10))
 
R sort.png

 

6 REPLIES 6
v-diye-msft
Community Support
Community Support

Hi @PVS07 

 

If the above posts help, please kindly mark it as a answer to help others find it more quickly. thanks!

If not, please kindly elaborate more.

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.
amitchandak
Super User
Super User

@PVS07 , I think you need to make visual sure visual is sorted by R

Hi @amitchandak - Thanks for the answer. However, when I clicked on the ellipse  button there was no sort option available like you get in other visuals.  Please see the screenshot below

 

Sorry if I interpreted your answer incorrectly.  

 

PVS07_0-1599111749570.png

 

@PVS07 , if the visual is created in R. then return a sorted visual 

lbendlin
Super User
Super User

https://www.r-graph-gallery.com/267-reorder-a-variable-in-ggplot2.html

 

By the way, you don't need unique() - Power BI already does that for your dataframe as mentioned in the comments of the R visual.

Hi @lbendlin  - Thanks for the link and the quick tip on unique(). I will check the link.

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors