Description Usage Arguments Details Value Examples
View source: R/parler_hashtag.R
Gets Parler Posts by hashtag
1 2 3 4 5 6 7 8 | parler_hashtag(
hashtag,
output_format = "data.frame",
flatten_sep = " || ",
parse_numbers = TRUE,
verbose = FALSE,
timeout = 600
)
|
hashtag |
Parler user handle. |
output_format |
Options include: |
flatten_sep |
Separator used to flatten nested variables (e.g. multiple badges per user). Defaults to |
parse_numbers |
Whether to parse numbers from Parler's format to numeric (e.g. from |
verbose |
Whether to print additional information while scraping |
timeout |
Whether to stop the scraping after an amount of timeout seconds. |
Warning: ...
A dataframe with one row for each post and a column for each variable.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
out <-
parler_hashtag(hashtag = "nocovidvaccine",
output_format = "data.frame",
flatten_sep = " || ",
parse_numbers = TRUE,
verbose = TRUE)
print(colnames(out))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.