Changing y-axis intervals

Hi, I'm super new to R and I've only started learning the basics. I'm trying to changes the y-axis interval to a smaller one. How do I do that? Could you please provide me the code?
Bodyfat=read.csv("BodyfatMales.csv")
View(Bodyfat)
attach(Bodyfat)
hist(Weight,
las=1,
main="Men's Body Weights",
xlab = "Body Weight (kg)",
ylab = "Number of indivuduals")

There is some information using the base R plots here:

You should also have a look at ggplot2.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.