Extracts general information on a professor.
general_info(url)
A character value indicating the URL of the professor's webpage.
A list with three elements
name - Complete name of the professor
department - The department of the professor
university - The university of the professor
url <- 'https://www.ratemyprofessors.com/ShowRatings.jsp?tid=2036448'
general_info(url = url)
#> $name
#> [1] "Farzad Sabzikar"
#>
#> $department
#> [1] "Statistics department"
#>
#> $university
#> [1] "Iowa State University"
#>