Displaying 1 result from an estimated 1 matches for "egy25cj00rhum40".
2012 Oct 11
1
dotplot in ".R" with lattice & latticeExtra: proper visualization
...00] and ".R" plots their ranks [1,2,3,4,...23] and chooses the
scale accordingly. Has someone experienced a problem like this? How can I
manage the get a proper representation with ticks like (0, 500, 1000, 1500,
...) on the vertical y-scale?
Here's my data:
https://www.dropbox.com/s/egy25cj00rhum40/data.csv
And here the program code so far:
df.dose <- read.table("data.csv", sep=",", header=TRUE)
library(lattice); library(latticeExtra)
useOuterStrips(dotplot(z ~ sample.size |
as.factor(effect.size)*as.factor(true.dose),
groups=as.factor(type), data=df.dose, a...