Created
May 14, 2016 05:07
-
-
Save coleoguy/98f74993862a87574f36becd79968d2f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SimThresh3 <- function(tree, liabilities=F){ | |
## This internal function just determines what the | |
## observed discrete state is | |
returnState <- function(x,y){ | |
state <- vector() | |
# angle A is at origin | |
# angle B is at 1,0 | |
# angle C is at x,y | |
# so we can calculate the sides like this | |
a <- sqrt((x-1)^2 + (y)^2) | |
c <- sqrt(x^2+y^2) | |
b <- sqrt(1) | |
# and then we can calculate the angle at the origin like this: | |
A <- (acos((b^2 + c^2 - a^2)/(2*b*c))) * (180/pi) | |
state <- vector(mode="numeric", length=length(y)) | |
state[(y >= 0 & A < 90) | (y < 0 & A < 30)] <- 1 | |
state[(y >= 0 & A > 90) | (y < 0 & A > 150)] <- 2 | |
state[y < 0 & (A > 30 & A < 150)] <- 3 | |
names(state) <- names(x) | |
return(state) | |
} | |
# This section uses Liam BM simulation to simulate in | |
# both dimensions | |
x<-fastBM(tree) | |
y<-fastBM(tree) | |
# calculate observed states | |
tip.state <- returnState(x,y) | |
# just tip observed | |
if(liabilities == F) return(tip.state) | |
# tip observed plus liabilities | |
if(liabilities == T){ | |
results <- vector("list", 3) | |
results[[1]] <- tip.state | |
results[[2]] <- x | |
results[[3]] <- y | |
names(results) <- c("observed", "liab1", "liab2") | |
return(results) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment