check_neg <- function(x){
if (intToBits(x)[5] == 1){
return(T)
} else {
return(F)
}
}
check_pos <- function(x){
if (intToBits(x)[3] == 1){
return(F)
} else if (intToBits(x)[5] != 1){
return(T)
} else {
return(F)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.