You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, thanks for all the updates. Second, I have a minor request to remove hit_count from the epmc_search results and just return a data.frame. I would add hit_count as an attribute and also create a new function like epmc_hits to get the hit_count since you often need that first before running a query to download records.
query <- 'abstract:"burkholderia pseudomallei"'
epmc_search(query, limit=1)$hit_count
1646 records found. Retrieving batch 1
[1] 1646
# ADD function to count hits instead
epmc_hits(query)
[1] 1646
## set pageSize and limit based on hit_count
bp <- epmc_search(query, 1000, 2000)$data
nrow(bp)
[1] 1646
# and I would just add hit count as attribute in epmc_search
attr(md, "hit_count") <- hit_count
md
The text was updated successfully, but these errors were encountered:
First, thanks for all the updates. Second, I have a minor request to remove hit_count from the epmc_search results and just return a data.frame. I would add hit_count as an attribute and also create a new function like
epmc_hits
to get the hit_count since you often need that first before running a query to download records.The text was updated successfully, but these errors were encountered: