ggpage icon indicating copy to clipboard operation
ggpage copied to clipboard

Creates Page Layout Visualizations in R 📄📄📄

Results 4 ggpage issues
Sort by recently updated
recently updated
newest added

``` r library(ggpage) library(tidytext) library(tidyverse) text % unnest_tokens(text, text, token = function(x) str_split(x, "\n")) %>% ggpage_quick() #> Warning: Use of `data_1$x_space_right` is discouraged. Use `x_space_right` #> instead. #> Warning: Use...

If enabled would allow for each word to have a paragraph, sentence and word id.

Old code: ``` [library](https://www.rdocumentation.org/packages/base/topics/library)(paletteer) sentiment_types % [filter](https://www.rdocumentation.org/packages/stats/topics/filter)(lexicon == "nrc") %>% pull(sentiment) %>% [unique](https://www.rdocumentation.org/packages/base/topics/unique)() prebuild % left_join([filter](https://www.rdocumentation.org/packages/stats/topics/filter)([get_sentiments](https://www.rdocumentation.org/packages/tidytext/topics/get_sentiments)("nrc"), sentiment == .x), by = "word") %>% mutate(sentiment_state = .x, score = [as.numeric](https://www.rdocumentation.org/packages/base/topics/numeric)(![is.na](https://www.rdocumentation.org/packages/base/topics/NA)(sentiment)), score_smooth...

Incorrect: `midbuild % mutate(score = ifelse(is.na(score), 0, score), score_smooth = zoo::rollmean(score, .x, 0), score_smooth = score_smooth / max(score_smooth), rolls = .x))` Correct: `midbuild % mutate(score = ifelse(is.na(value), 0, value), score_smooth...