get_tid: Professor ID Extractor

View source: R/get_tid.R

get_tidR Documentation

Professor ID Extractor

Description

Extracts the professor's ID and combines it with general information.

Usage

get_tid(name, department = NULL, university)

Arguments

name

A character value of the professor's full name (required).

department

A character value of the professor's department (optional).

university

A character value of the professor's university (required).

Value

A tibble of the professor's ID and the general information with 4 columns

  • tID - ID of the professor

  • name - Full name of the professor

  • department - The department of the professor

  • university - The university of the professor

Examples

name <- "Brakor"
department <- "Biology"
university <- "California Berkeley"
get_tid(name = name, university = university)
get_tid(name = name, department = department, university = university)

m-fili/ProfRate documentation built on May 22, 2022, 8:33 p.m.