Skip to content

Instantly share code, notes, and snippets.

@sahilseth
Created October 27, 2015 18:05
Show Gist options
  • Save sahilseth/e3e98b26ba8daa944ffe to your computer and use it in GitHub Desktop.
Save sahilseth/e3e98b26ba8daa944ffe to your computer and use it in GitHub Desktop.
issue with dplyr
log2(as.numeric(select(clust, PATC53.377)[1,]) / as.numeric(select(clust, one_of(newrefs))[1,]))
VS
as.numeric(select(clust, PATC53.377)[1,]) / as.numeric(select(clust, one_of(newrefs))[1,]) %>% log2()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment