enter image description here
I have this data frame with the value I want to take to the graph which is the_bin and the value where I want them to be arranged which is the_bin_num but.
And I get something:
enter image description here
You can see that they are not arranged at all
I would be happy for ideas
ggplot(data = data_by_time2,aes(x=the_bin,y=avg,fill =avg))+geom_bar(stat = "identity",position = "dodge")+
labs(title = "Average Profit According To The Running Time Of The Movie",x="Run Time",y="Mean Trim Profit",color="Mean Trim Profit",fill="Mean Trim")+
facet_grid(.~genres)+theme(axis.text.x = element_text(angle = 90,vjust = 0.5 ,hjust = 1))
New contributor
נדב ברזי is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1