-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Allign word and count searches #81
Comments
Hey @another-helpful-user - sorry for being late to reply to this, I missed it before. I'm not quite sure I understand the questions - in terms of search terms, there are several examples on the tutorials / documentation that cover different kinds of searches: If this doesn't answer your request, could you provide an example of what you are trying to search for? |
Hello Tom, Meaning: (A) AND (B) AND (C) Thank you. |
Hey @JoaoPimenta88 - yeh, you can add more than one inclusion per term, just add them as a list of inclusions, and they should all be joined together with 'AND'. You can see an overview of term construction here - in the inclusions part try out adding extra terms and double check that it works as expected. |
I created a list of inclusions but it adds them with OR instead of AND. terms = [['cars']] Output: |
Hello,
thank you for the nice package and documentation!
I managed to search for co-occurences using the pattern
terms =[[A],[B]
inclusions=[C]
coming to a search string of "(A) AND (B) AND (C)".
How can I design a word search with the same search string?
So far I only managed "(A) OR (B) AND (C)" or "(A) AND (B or C)" via inclusions. I can then get the dois from the result and find overlaps, but that's rather annoying and not within the package framework.
Any help is appreciated.
The text was updated successfully, but these errors were encountered: