Recent Releases of tidytext
tidytext - tidytext 0.4.3
- Updated package anchors in roxygen comments
Scientific Software - Peer-reviewed
- R
Published by juliasilge 12 months ago
tidytext - tidytext 0.4.2
Added alt text to figures in vignettes and README (#233)
Update vignette for quanteda::dfm() v4 (#242)
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 2 years ago
tidytext - tidytext 0.4.1
- Fixed bug for FREX stm tidier (#228)
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 3 years ago
tidytext - tidytext 0.4.0
- hunspell is now a suggested dependency, thanks to @MichaelChirico (#221)
- Added
stm()tidiers for high FREX and lift words (#223) - Removed tweet-specific tokenizers because of changes in upstream dependencies (#227)
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 3 years ago
tidytext - tidytext 0.3.4
- Updated the tidy method for a quanteda
dfmbecause of the upcoming release of Matrix (#218)
Scientific Software - Peer-reviewed
- R
Published by juliasilge almost 4 years ago
tidytext - tidytext 0.3.3
scale_x/y_reordered()now uses a functionlabelsas its main input (#200)- Fixed how
to_loweris passed to underlying tokenization function for character shingles (#208) - Added support for tidying STM models that use
content, thanks to @jonathanvoelkle (#209)
Scientific Software - Peer-reviewed
- R
Published by juliasilge about 4 years ago
tidytext - tidytext 0.3.2
- Update testing for rlang change + testthat 3e
Scientific Software - Peer-reviewed
- R
Published by juliasilge almost 5 years ago
tidytext - tidytext 0.3.1
- Check for installation of stopwords more gracefully
- Update tidiers and casters for new version of quanteda
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 5 years ago
tidytext - tidytext 0.3.0
- Use vdiffr conditionally
- Bug fix/breaking change for
collapseargument tounnest_functions(). This argument now takes eitherNULL(do not collapse text across rows for tokenizing) or a character vector of variables (use said variables to collapse text across rows for tokenizing). This fixes a long-standing bug and provides more consistent behavior, but does change results for many situations (such as n-gram tokenization).
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 5 years ago
tidytext - tidytext 0.2.6
- Move one vignette to pkgdown site, because of dependency removal
- Move all CI from Travis to GH actions
Scientific Software - Peer-reviewed
- R
Published by juliasilge almost 6 years ago
tidytext - tidytext 0.2.5
reorder_within()now handles multiple variables, thanks to @tmastny (#170)- Move stopwords to Suggests so tidytext can be installed on older versions of R
- Pass
to_lowerargument to other tokenizing functions, for more consistent behavior (#175) - Add
glance()method for stm's estimated regressions, thanks to @vincentarelbundock (#176)
Scientific Software - Peer-reviewed
- R
Published by juliasilge about 6 years ago
tidytext - tidytext 0.2.3
- Wrapper tokenization functions for n-grams, characters, sentences, tweets, and more, thanks to @ColinFay (#137).
- Simplify get_sentiments() thanks to @jennybc (#151).
- Fix flaky tests for corpus tidiers.
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 6 years ago
tidytext - tidytext 0.2.2
- Access NRC lexicon via textdata package
Scientific Software - Peer-reviewed
- R
Published by juliasilge almost 7 years ago
tidytext - tidytext 0.2.1
- Fix bug in
augment()function for stm topic model. - Warn when tf-idf is negative, thanks to @EmilHvitfeldt (#112).
- Switch from importing broom to importing generics, for lighter dependencies (#133).
- Add functions for reordering factors (such as for ggplot2 bar plots) thanks to @tmastny (#110).
- Update to
tibble()where appropriate, thanks to @luisdza (#136). - Clarify documentation about impact of lowercase conversion on URLs (#139).
- Change how sentiment lexicons are accessed from package (remove NRC lexicon entirely, access AFINN and Loughran lexicons via textdata package so they are no longer included in this package).
Scientific Software - Peer-reviewed
- R
Published by juliasilge about 7 years ago
tidytext - tidytext 0.2.0
- Improvements to documentation (#117)
- Fix for NSE thanks to @lepennec (#122).
- Tidier for estimated regressions from stm package thanks to @jefferickson (#115).
- Tidier for correlated topic model from topicmodels package (#123).
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 7 years ago
tidytext - tidytext 0.1.9
- Updates to documentation (#109) thanks to Emil Hvitfeldt.
- Add new tokenizers for tweets, Penn Treebank to
unnest_tokens(). - Better error message (#111) and code styling.
- Declare dependency for tests.
Scientific Software - Peer-reviewed
- R
Published by juliasilge about 8 years ago
tidytext - tidytext 0.1.8
- Updates to documentation (#102), README, and vignettes.
- Add tokenizing by character shingles thanks to Kanishka Misra (#105).
- Fix tests for skip grams thanks to Lincoln Mullen (#106).
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 8 years ago
tidytext - tidytext 0.1.7
unnest_tokenscan now unnest a data frame with a list column (which formerly threw the errorunnest_tokens expects all columns of input to be atomic vectors (not lists)). The unnested result repeats the objects within each list. (It's still not possible whencollapse = TRUE, in which tokens can span multiple lines).- Add
get_tidy_stopwords()to obtain stopword lexicons in multiple languages in a tidy format. - Add a dataset
nma_wordsof negators, modals, and adverbs that affect sentiment analysis (#55). - Updated various vignettes/docs/tests so package can build on R-oldrel.
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 8 years ago
tidytext - tidytext 0.1.5
- Change how
NAvalues are handled inunnest_tokensso they no longer cause other columns to becomeNA(#82). - Update tidiers and casters to align with quanteda v1.0 (#87).
- Handle input/output object classes (such as
data.table) consistently (#88).
Scientific Software - Peer-reviewed
- R
Published by juliasilge over 8 years ago
tidytext - tidytext 0.1.4
- Fix tidier for quanteda dictionary for correct class (#71).
- Add a pkgdown site.
- Convert NSE from underscored function to tidyeval (
unnest_tokens,bind_tf_idf, all sparse casters) (#67, #74). - Added tidiers for topic models from the
stmpackage (#51).
Scientific Software - Peer-reviewed
- R
Published by juliasilge almost 9 years ago
tidytext - tidytext 0.1.3
get_sentimentsnow works regardless of whethertidytexthas been loaded or not (#50).unnest_tokensnow supports data.table objects (#37).- Fixed
to_lowerparameter inunnest_tokensto work properly for all tokenizing options. - Updated
tidy.corpus,glance.corpus, tests, and vignette for changes to quanteda API - Removed the deprecated
pair_countfunction, which is now in the in-development widyr package - Added tidiers for LDA models from the
malletpackage - Added the Loughran and McDonald dictionary of sentiment words specific to financial reports
unnest_tokenspreserves custom attributes of data frames and data.tables
Scientific Software - Peer-reviewed
- R
Published by juliasilge about 9 years ago
tidytext - tidytext v0.1.1
- Added documentation for n-grams, skip n-grams, and regex
- Added codecov and appveyor
- Added tidiers for LDA objects from topicmodels and a vignette on topic modeling
- Added function to calculate tf-idf of a tidy text dataset and a tf-idf vignette
- Fixed a bug when tidying by line/sentence/paragraph/regex and there are multiple non-text columns
- Fixed a bug when unnesting using n-grams and skip n-grams (entire text was not being collapsed)
- Added ability to pass a (custom tokenizing) function to token. Also added a collapse argument that makes the choice whether to combine lines before tokenizing explicit.
- Changed tidy.dictionary to return a tbl_df rather than a data.frame
- Updated
cast_sparseto work with dplyr 0.5.0 - Deprecated the
pair_countfunction, which has been moved topairwise_countin the widyr package. This will be removed entirely in a future version.
Scientific Software - Peer-reviewed
- R
Published by juliasilge about 10 years ago
tidytext - First release
Initial release of tidytext package for text mining using tidy tools
Scientific Software - Peer-reviewed
- R
Published by juliasilge about 10 years ago