Skip to content

Instantly share code, notes, and snippets.

@coleoguy
Created April 30, 2016 21:11
Show Gist options
  • Save coleoguy/bcbe9203e2aaf0a4dd794afd3f2510da to your computer and use it in GitHub Desktop.
Save coleoguy/bcbe9203e2aaf0a4dd794afd3f2510da to your computer and use it in GitHub Desktop.
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