Re: [R] suppress labels in lattice barchart

2016-10-16 Thread Duncan Mackay
home: mac...@northnet.com.au -Original Message- From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Naresh Gurbuxani Sent: Sunday, 16 October 2016 10:44 To: R-help@r-project.org Subject: [R] suppress labels in lattice barchart I would like to print a barchart without labels for c

[R] suppress labels in lattice barchart

2016-10-15 Thread Naresh Gurbuxani
I would like to print a barchart without labels for categorical variables.   What change should be made to below command? Thanks, Naresh boy.age <- data.frame(name = c("alpha", "beta", "charlie", "gerald"), age = c(7, 9, 6, 5)) boy.age$name <- with(boy.age, reorder(name, age)) # draws with nam