non-uc-academic | R Documentation |
Find entities who graduated from a particular institution. By default, attendees are not included, use attendees = TRUE
to include attendees.
has_external_degree_from(
...,
undergraduates = TRUE,
graduates = TRUE,
attendees = FALSE,
current_students = FALSE,
degreeholders = TRUE,
from = NULL,
to = NULL
)
... |
Institutions |
undergraduates |
TRUE/FALSE: should include undergraduates? Default is TRUE |
graduates |
TRUE/FALSE: should include graduates? Default is TRUE |
attendees |
TRUE/FALSE: should include attendees? Default is FALSE |
current_students |
TRUE/FALSE: should include current students? Default is FALSE |
degreeholders |
TRUE/FALSE: should include degreeholders? Default is TRUE |
from |
(optional) date range: look only for those who graduated between these dates. Enter as an integer of the form YYYYMMDD (see details) |
to |
(optional) date range: look only for those who graduated between these dates. Enter as an integer of the form YYYYMMDD (see details) When using the daterange ( |
A definition of type entity_id
academic
## graduated from University of Michigan Ann Arbor between 01/01/2001 and 12/31/2004
## since attendees are not included by default, this only pulls
## (undergrad and grad) degreeholders. Those with a GRAD DATE in the
## daterange will be included
has_external_degree_from(001839, from = 20010101, to = 20041231)
## just grad degree holders from University of Michigan Ann Arbor
has_external_degree_from(001839, undergraduates = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.