Last active
September 26, 2017 04:58
-
-
Save i-like-bikes/beb47caa068cee9116395748363bdf15 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
searchCols = vector('list', ncol(mtcars)) | |
q = list('gear'=3, 'mpg'=10) | |
colNames = names(mtcars) | |
for(col_ in names(q)) { | |
pos = which(colNames == col_) | |
searchCols[[pos]] <- list(search = q[[col_]]) | |
} | |
searchCols |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment