Re: [R] how to draw a stripplot in vertical orientation, using lattice

2023-05-19 Thread Bert Gunter
Well, my aesthetic sense is not offended, so: dd |> stripplot(height ~ "", data = _, horizontal = FALSE) ## seems fine to me. ## But if you prefer, the following is a more verbose but maybe more "seemly" version :-) : dd |> stripplot(height ~ 1, data = _, horizontal = FALSE, xlab = ""

[R] how to draw a stripplot in vertical orientation, using lattice

2023-05-19 Thread Christopher Ryan via R-help
I'm attempting to describe the height of a fall from a building, so the vertical orientation has a certain attraction. dd <- data.frame(nothing = rep(1:2, each = 6), height = runif(n=12, min=0, max=30)) dd ## pretty much what I'm looking for with(dd, stripchart(height, vertical = TRUE)) ## but i