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 = ""
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
2 matches
Mail list logo