Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
numeroteca
tuits-analysis
Commits
48f3a976
Commit
48f3a976
authored
Oct 17, 2021
by
numeroteca
Browse files
add way to say urls in tweets as rds
parent
2bd8bbab
Changes
1
Hide whitespace changes
Inline
Side-by-side
analysis/links-in-tweets.R
View file @
48f3a976
...
...
@@ -427,6 +427,10 @@ urls_total <- urls_total %>% mutate(
urls_total
<-
simplify_classyfy_domains
(
urls_total
)
# Save data -----------
saveRDS
(
urls_total
,
file
=
paste0
(
"data/output/"
,
case_path
,
"/"
,
case_path
,
"_"
,
period_path
,
"_urls_total.rds"
))
domain_type
<-
urls_total
%>%
filter
(
domain
!=
"0"
&
!
is.na
(
domain
)
)
%>%
group_by
(
domain_type
)
%>%
summarise
(
count
=
n
()
)
%>%
arrange
(
-
count
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment