aegea wrote: > > > Can R make an usual dotplot just like Minitab and other softwares? > > I have the following data, and can use dotchart to graph a dotplot: > > .... > > But I don't want the dots on different level of y-axis since y-axis has no > meaning here. >
y = rnorm(10) plot(y,rep(1,10),xlab="hallo",ylab="what?") library(lattice) dotplot(y,xlab="hallo",ylab="what?") Dieter -- View this message in context: http://n4.nabble.com/Can-R-make-an-usual-dotplot-tp1559649p1559732.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.