find.people | R Documentation |
firm
objectsExtract all the unique people associated to at least one of the provided firm
objects
find.people(..., who = c("managers", "owners", "both", "all"), sorting = TRUE)
... |
Either multiple objects of class |
who |
Whether to extract the 'managers' or the 'owners' (minimum unambiguous string) |
sorting |
Whether to sort the people by alphabetical order. Defaults to |
A vector containing the names of the individuals looked up. If
Telarico, Fabio Ashtar
# Find all the shareholders in companies that Berkshire Hathaway holds
data('firms_BKB')
shareholders <- find.people(firms_BKB, who = 'own')
# Find all those managing the companies that Berkshire Hathaway holds
data('firms_BKB')
managers <- find.people(firms_BKB, who = 'man')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.