I used this next code below to get the NUMBER on top of each bar. Where would I made an amendment to get the $ on the bar? Is it a new line of code or within the geom_text line below? Appreciate any help here, I am a rookie!
You can use dollar from the scales library (which seems you are using) to directly add dollar signs and specify digits to the label.
libary(scales)
geom_text (aes(label = scales::dollar(CareerEarnings,digits = 0)), color = "black")
It's a pretty useful library! dollar_format() would also work instead of dollar(), but I'm not sure if you would have to lose the digits part of the syntax.
bingo! thanks so much! I added the vjust section in there so it fit correctly piggybacking off the code you had sent along. I also set it to white text for my bar graph