Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Merge pull request #50 from bretsw/dev
Browse files Browse the repository at this point in the history
trying pak::local_system_requirements(execute = TRUE)
  • Loading branch information
bretsw authored Dec 14, 2021
2 parents 253d792 + c7ac965 commit 3f3c49b
Show file tree
Hide file tree
Showing 59 changed files with 1,498 additions and 1,303 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Install dependencies
run: |
pak::local_install_dev_deps(upgrade = FALSE)
pak::local_install_dev_deps(upgrade = TRUE)
pak::pkg_install("rcmdcheck")
shell: Rscript {0}

Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: tidytags
Title: Importing and Analyzing Twitter Data Collected with Twitter Archiving Google Sheets
Version: 0.2.0
License: GPL-3
Version: 0.2.1
License: MIT + file LICENSE
Authors@R: c(
person("K. Bret", "Staudt Willet", ,
email = "[email protected]",
Expand Down
2 changes: 2 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
YEAR: 2021
COPYRIGHT HOLDER: K. Bret Staudt Willet & Joshua M. Rosenberg
22 changes: 22 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# MIT License

Copyright (c) 2021, K. Bret Staudt Willet & Joshua M. Rosenberg

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
5 changes: 1 addition & 4 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@

export(add_users_data)
export(create_edgelist)
export(create_mentions_edgelist)
export(create_quotes_edgelist)
export(create_replies_edgelist)
export(create_retweets_edgelist)
export(filter_by_tweet_type)
export(geocode_tags)
export(get_char_tweet_ids)
export(get_upstream_tweets)
Expand Down
10 changes: 10 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ tidytags development version

*


tidytags 0.2.1 (2021-12-14)
=========================

### NEW FEATURES

* Added a new function filter_by_tweet_type() to filter a Twitter dataset to only include statuses of a particular type (e.g., replies, retweets, quote tweets, mentions)
* Updated the function create_edgelist() to take a "type" argument (e.g., "reply", "retweet", "quote", "mention", "all"). This replaces the need for specialized functions like create_mentions_edgelist().


tidytags 0.2.0 (2021-11-19)
=========================

Expand Down
2 changes: 1 addition & 1 deletion R/add-users-data.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#' \dontrun{
#'
#' example_url <- "18clYlQeJOc6W5QRuSlJ6_v3snqKJImFhU42bRkM_OX8"
#' tmp_df <- pull_tweet_data(read_tags(example_url), n = 10)
#' tmp_df <- pull_tweet_data(read_tags(example_url))
#' add_users_data(create_edgelist(tmp_df))
#' }
#' @importFrom rlang .data
Expand Down
Loading

0 comments on commit 3f3c49b

Please sign in to comment.