Suppose you have data points ranging from 10^9-10^13, that if you used ggplot, the scale on the graph would only show the order of 10^13 while anything less than that would be miniscule.
ggplot(data=Category_type,
aes(x=reorder(TYPE, dollars), y=dollars, fill=dollars )) +
geom_bar(stat="identity") +
coord_flip() +
xlab("type") +
ylab("dollars") +
ggtitle("Highest Costs") +
theme(legend.position="none")
What would I have to change in this statement to accommodate for points that display the bars of order 10^9 ?
I stumbled upon this thread but it's not exactly what I'm looking for: