Replies: 14 comments
|
Thanks for using LitStudy! Looks like Could you maybe provide the rest of the notebook, or do you have the line that creates |
|
You would need to do something like this: docs_springer, docs_not_found = litstudy.refine_scopus(docs_springer)
print(len(docs_springer), "papers found on Scopus")
print(len(docs_not_found), "papers NOT found on Scopus") |
|
@stijnh I'm also a bit confused about the ngram_threshold, even after reading the guidance documents. An ngram_threshold of 0.8 does what exactly? Classifies something as agreeing with/matching that ngram if 80% of its characters are the same as the reference ngram (included in the corpus)? Sorry for the question, but I can't seem to clarifying on my own and it would be good to know how LitStudy is working here. Thanks, S |
|
Hi,
This is the complete table of all ngrams, that means all the words that contain a Remove
The parameter The actual processing is done by |
|
Hi @stijnh another quick question from me which might have a simple answer, hence why I am not opening it as a new issue: In the word distribution plot which has been produced below, is the highest result saying that the word 'nature' only appears across 35% of the documents? I am asking because it was a key search term used in the original Scopus search, so in theory all of the documents (that is, 100%) should include the word 'nature'. Thanks, as always, for your patience and advice, Sam |
The thing returned by For example, you can add
Not sure about this one. Maybe sometimes Good luck! |
Thanks for sharing this @stijnh - one (final) question which isn't clear to me from the guidance, how can we change the parameters to search for trigrams? I have a feeling that the top scoring bigram below "nature_solutions" is actually "nature-based solutions" or "nature based solutions", and would like to capture this in the word distribution output. |
Thanks @stijnh , although I can't seem to get pandas to write the DataFrame to a .csv, here's what I'm doing: There's no error returned, but nothing being written to the .csv either... |
Replace by You were creating an empty |
|
Great, thanks @stijnh I've now instead encountered the issue of the exported .xlsx from DataFrame being unopenable, due to an invalid extension of file pathway, but this seems to be a known issue that requires a workaround so I've posted elsewhere. If you are curious, here's the issue |













Uh oh!
There was an error while loading. Please reload this page.
AttributeError: 'DocumentSet' object has no attribute 'title' is displayed, even after changing title within relevant CSV file (docs_springer) to read 'title'.
Thanks in advance! :)
Sam
All reactions