how to delete axis name in R plotly

Hello please i won't to show the name of the axis x0 and y0 in this bar pot using R plotly.
Which argument i must add ? this is my code . Thank you in advance.

xo = c(paste("Relations municipalité avec les administrés  et la société civile"), paste("Coopération décentralisée"),"Intercommunalité",
       "Dialogue social","Approche participative","Autre ")
 yo =  c(30,5,9,7,8,3)
 data1 = data.frame(xo,yo)
 figaut <- plot_ly(data1,
   
   x = ~ xo,
   y = ~ yo,
   
   marker = list(color='#CD5C5C'),
   type = "bar"
 )

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.