Displaying 2 results from an estimated 2 matches for "lodds".
Did you mean:
loads
2006 Apr 14
1
Dotplot x-axis
Here's a small dataset:
type <- c('hierarchical','partial','single','complete','single
+hierarchical','single+partial','partial+hierarchical','single+partial
+hierarchical')
freq <- c(1455,729,688,65,29,28,16,17)
lodds <- log(freq/(3027 - freq))
dotplot(type~lodds)
I would like to have the x-axis have ticks at nice, close to equally-
spaced values, of the proportions rather than at round log-odds
values, which appear as -5:0. For example: perhaps have ticks at c
(0.007, 0.02, 0.05, 0.12, 0.27, 0.5), which...
2006 Apr 14
0
R: Dotplot x-axis
...gt;type <- c('hierarchical','partial','single','complete','single
>+hierarchical','single+partial','partial+hierarchical','sing
>le+partial
>+hierarchical')
>freq <- c(1455,729,688,65,29,28,16,17)
>lodds <- log(freq/(3027 - freq))
>dotplot(type~lodds)
>
>I would like to have the x-axis have ticks at nice, close
>to equally-
>spaced values, of the proportions rather than at round log-odds
>values, which appear as -5:0. For example: perhaps have ticks at c...