bnrf1 | R Documentation |
Two gene DNA data “discrete time series”,
bnrf1EB
the BNRF1 gene from the Epstein-Barr virus,
bnrf1HV
the BNRF1 gene from the herpes virus.
data(bnrf1)
The EB sequence is of length
3954, whereas the HV has
3741 nucleotides.
Both are R factor
s with the four levels
c("a","c","g","t")
.
Martin Maechler (original packaging for R).
See the references; data used to be at
https://anson.ucdavis.edu/~shumway/tsa.html
, and are now available
in CRAN package astsa, e.g., bnrf1ebv
.
Shumway, R. and Stoffer, D. (2000) Time Series Analysis and its Applications. Springer Texts in Statistics.
data(bnrf1)
bnrf1EB[1:500]
table(bnrf1EB)
table(bnrf1HV)
n <- length(bnrf1HV)
table(t = bnrf1HV[-1], "t-1" = bnrf1HV[-n])
plot(as.integer(bnrf1EB[1:500]), type = "b")
## Simplistic gene matching:
percent.eq <- sapply(0:200,
function(i) 100 * sum(bnrf1EB[(1+i):(n+i)] == bnrf1HV))/n
plot.ts(percent.eq)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.