I have a variable, Avg_Salary, where the min is $16,970 and the max is $5,991,000. However, when I go to plot a histogram in R, it shows the values on the x and y axis in scientific notation it looks like. 0e+00, 1e+06, 2e+06, etc. How do I get it to show the numbers in the thousands and millions. Is it because they are too big to be displayed on the graph? Can I edit this to change my axis?
hist(rs$Avg_Salary, freq=F, xlab = "Avg_Salary", main = "Histogram of Avg_Salary")
![histogram][1]