Displaying 2 results from an estimated 2 matches for "missense".
Did you mean:
dispense
2010 Oct 25
1
help with adding lines to current plot
HI, Dear R community,
I am using the following codes to plot, however, the lines code works. But
the line was not drawn on the previous plot and did not shown up.
How comes?
# specify the data for missense simulation
x <- seq(0,10, by=1)
y <- c(0.952, 0.947, 0.943, 0.941, 0.933, 0.932, 0.939, 0.932, 0.924, 0.918,
0.920) # missense
z <- c(0.068, 0.082, 0.080, 0.099, 0.108, 0.107, 0.101, 0.105, 0.118, 0.130,
0.132) # missense False Negative
par()$mar #view the value of margin [1] 5.1 4.1 4....
2010 Nov 17
0
X11 module cannot be loaded
HI, Dear R community,
I have used the following codes this morning, but this afternoon, I got the
following errors:
> x <- seq(0,10, by=1)
> y <- c(0.952, 0.947, 0.943, 0.941, 0.933, 0.932, 0.939, 0.932, 0.924,
0.918, 0.920) # missense
> z <- c(0.068, 0.082, 0.080, 0.099, 0.108, 0.107, 0.101, 0.105, 0.118,
0.130, 0.132) # missense False Negative
> p <- c(0.035, 0.036, 0.044, 0.035, 0.043, 0.044, 0.037, 0.044, 0.051,
0.052, 0.048) # missense False Positive
> xlab<-"Missense (%)"
>
> par()$mar #vi...