I am creating a bar chart in ggplot2, but my x-axis is showing the amount of minutes in hundreds instead of tens. This is my code.
ggplot(data=daily_sleep_diff, aes(x=TimeToFallAsleep))+geom_bar()
This is a sample of my dataset. sample dataset
And this is the chart it shows. Notice the numeric values on the x-axis. bar chart
I'm confused as to why this is occurring, as I'd think it would just show the numeric values within the column of TimeToFallAsleep, but I am a noob in R, so there's still a lot for me to learn.

