with_account() lets you add additional accounts to a query(). It's root brands and timezone are added, as appropriate. This is part of the query() language.

with_account(.query, account)

Arguments

.query

A query() or account() to which to add this account.

account

The account() to add.

Value

A query() object

See also

Other verbs for the query language: group_mentions_by(), compare_mentions(), with_mention_fields(), with_mention_order()

query() is a way to manually create queries.

Examples

if (FALSE) { account("TEST01AA") %>% filter_mentions("published inthelast week") %>% with_account("TEST03AA") account("TEST01AA") %>% filter_mentions("published inthelast week") %>% with_account(account("TEST03AA")) }