ropensci / rcrossref

R client for various CrossRef APIs
https://docs.ropensci.org/rcrossref
Other
166 stars 20 forks source link

Which CR member IDs do not open-up their references? #158

Closed rossmounce closed 6 years ago

rossmounce commented 6 years ago

Is there a way I can use rcrossref to give me a query returning all CR member IDs that do not have opened citations ( https://i4oc.org/ ).

e.g. for

 #AmericanEconomicAssocation, citations NOT open
cr_members(11)

which output flag tells about the status of the citations? I realise this is a CrossRef issue not an rcrossref issue per se, but I assume this might well be of topical interest to some people(?).

rossmounce commented 6 years ago

Looks like I need to find the has-public-references flag with values either true or false somehow, via rcrossref https://github.com/CrossRef/rest-api-doc/issues/209

sckott commented 6 years ago

hi @rossmounce

seems ideal if you could facet on has-public-references, but not avail. on non works routes.

there is

cr_members(filter = list(has_public_references = FALSE))

and

cr_members(filter = list(has_public_references = TRUE))

and you'd have to paginate through each of those to get all results, then you'll have set of members that do and don't have public references.

rossmounce commented 6 years ago

Thanks @sckott perfect! I'll close this issue.