get_proquest | R Documentation |
This function loads data on PhD graduates or their advisors
from ProQuest. It is based on metadata from ProQuest,
and automatically adds the likely gender of the person,
using define_gender
, and for graduates, their
field using define_field
.
get_proquest(conn, from, start_year = 1985, end_year = 2005, ...)
conn |
An object of class |
from |
A string with options to be queried: "advisors" or "graduates". |
start_year |
Lowest graduation year to consider. Default: 1985. |
end_year |
Highest graduation year to consider. Default: 2005. |
... |
Additional arguments to be passed to
|
For simplicity, does not return the degree year and university information to
advisors. You can add this information to advisors by joining the
output of get_proquest(from = "graduates")
to the output of
get_proquest(from = "advisors")
.
For graduates, returns a table with degree year, university id, fieldname and gender. For advisors, returns a table with gender and relationship id.
conn <- connect_to_db(db_example("AcademicGraph.sqlite"))
d_graduates <- get_proquest(conn = conn, from = "graduates")
d_advisors <- get_proquest(conn = conn, from = "advisors")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.