get_event.semnar {semnar} | R Documentation |
Get event information from a semnar
object
Description
Get event information from a semnar
object
Usage
## S3 method for class 'semnar'
get_event(object)
get_event(object)
Arguments
object |
either an object an object of class |
Value
A list of semnar_event
objects, with the unique presenters in the object
.
See Also
Examples
IK_warwick <- presenter(name = "Ioannis",
surname = "Kosmidis",
affiliation = "University of Warwick",
link = "https://www.ikosmidis.com")
YRM <- event(event = "Young Researchers' Meeting",
country = "England",
city = "Coventry",
state = "NA",
lon = -1.560843, lat = 52.384019,
link = "https://warwick.ac.uk/fac/sci/statistics/news/yrm/",
institution = "University of Warwick",
department = "Department of Statistics",
school = NA,
venue = "Mathemtical Sciences Building",
address = NA,
postcode = NA)
out <- add_presentation(presenter = IK_warwick,
event = "A",
country = "Greece",
title = "S") |>
add_presentation(presenter = IK_warwick,
event = "B",
city = "London",
country = "UK",
title = "T") |>
add_presentation(presenter = IK_warwick,
event = YRM,
title = "U")
get_event(out)
[Package semnar version 0.8.1 Index]