We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This looks too trivial, but I can't seem to figure out if I am doing something wrong.
If using a list as input, the manual says: "Vectors in the list do not need to be named". However, this doesn't seem to be true:
my_list<- list(c("a","b","c"), c("a","d","e")) euler(my_list)
gives:
Error in parse_list(combinations) : !is.null(attr(combinations, "names")) is not TRUE
while
my_list <- list(c("a","b","c"), c("a","d","e")) names(my_list) <- c("name1", "name2") euler(my_list)
runs succesfully.
Does the manual need updating?
The text was updated successfully, but these errors were encountered:
3d888ab
you're right, thanks @gprezza !
Sorry, something went wrong.
You're welcome!
No branches or pull requests
This looks too trivial, but I can't seem to figure out if I am doing something wrong.
If using a list as input, the manual says: "Vectors in the list do not need to be named". However, this doesn't seem to be true:
gives:
while
runs succesfully.
Does the manual need updating?
The text was updated successfully, but these errors were encountered: