Skip to content

Instantly share code, notes, and snippets.

@wush978
Created March 27, 2016 14:49
Show Gist options
  • Select an option

  • Save wush978/0f29cd989f14d40397c5 to your computer and use it in GitHub Desktop.

Select an option

Save wush978/0f29cd989f14d40397c5 to your computer and use it in GitHub Desktop.
StrToBits <- function(x) {
.x <- charToRaw(x)
.x2 <- rawToBits(.x)
paste(substring(as.character(.x2), 2, 2), collapse = "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment