Extracts URL by the name, department, and university of the professor.
get_url(name, department = NULL, university = NULL)
A character value of the professor's full name (required).
A character value of the professor's department (optional).
A character value of the professor's university (required).
A vector of URL(s)
name <- "Brakor"
department <- "Biology"
university <- "California Berkeley"
get_url(name = name, university = university)
#> [1] "https://www.ratemyprofessors.com/ShowRatings.jsp?tid=1031282"
get_url(name = name, department = department, university = university)
#> [1] "https://www.ratemyprofessors.com/ShowRatings.jsp?tid=1031282"