Description Usage Arguments Value Examples
View source: R/podlove_clean_stats.R
podlove_clean_stats
takes podcast download and various reference
data to create a tidy set of download attempts. The reference data consists
of the tables for podlove episodes (df_episodes
), blog posts
(df_posts
), user agents (df_user
) and media files
(df_mediafile
).
1 2 3 4 5 6 7 8 9 | podlove_clean_stats(
df_stats,
df_mediafile,
df_user,
df_episodes,
df_posts,
ddupe = FALSE,
launch_date = NULL
)
|
df_stats |
contents of the MySQL table |
df_mediafile |
contents of the MySQL table |
df_user |
contents of the MySQL table |
df_episodes |
contents of the MySQL table |
df_posts |
contents of the MySQL table |
ddupe |
boolean switcher for legacy deduplication. Don't use this until you know what you're doing. |
launch_date |
date of the first official podcast episode release, defaults to date of first download attempt (which may be before the first episode was released) |
a dataframe containing all episode download attempts
1 2 3 4 5 6 7 8 9 | ## Not run:
podlove_clean <- podlove_clean_stats(df_stats = table_stats,
df_mediafile = table_mediafile,
df_user = table_useragent,
df_episodes = table_episodes,
df_posts = table_posts,
launch_date = "2017-12-04")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.