Questions tagged as 'tidyverse'

1
answer

Size of the panels with facet_wrap

I'm doing some panel graphics in ggplot2 . See the example below: library(ggplot2) ggplot(mpg, aes(x=displ, y=hwy)) + geom_point() + geom_smooth(method="lm", se=FALSE, colour="black") + facet_wrap(~ trans) Ihavemygraphicalwindo...
asked by 13.09.2018 / 18:15
1
answer

What are columns-list of a data.frame?

tidyverse encourages the use of list-columns in < a data / data / data.frames "class=" post-tag "title=" show questions tagged 'data.frames' "> data.frames . But, after all, What are columns-lists? On what occasions are they commonly...
asked by 26.12.2018 / 14:31
1
answer

How to use dplyr within a function?

Let's say I wanted to create a function that internally uses some functions of the dplyr or any tidyverse that use this type of syntax. By way of illustration: exemplo <- function(df, predicado, sumario) { df %>% filter(predicad...
asked by 29.06.2018 / 16:40
1
answer

Table of feeling ordering (Tidytext)

I'm trying to create a table that has the Chapter-Book-Feeling-n leaving the Chapter always in the original order : "The Boy Who Lived",         "The Vanishing Glass",         "The Letters from No One",         "The Keeper of Keys",         "...
asked by 14.07.2018 / 20:18
0
answers

tidyverse_conflicts ()

When loading the tidyverse package, it shows that there are some conflicts. -- Attaching packages --------------------------------------- tidyverse 1.2.1 -- v ggplot2 3.0.0 v purrr 0.2.5 v tibble 1.4.2 v dplyr 0.7.6 v tidyr 0....
asked by 07.08.2018 / 16:28
0
answers

How to organize Outlook imported .csv file to create personal calendar event indicator

I want to create a quantity and time indicator spent on meetings based on the imported .csv file from Outlook. I am using the tidyverse and readr packages, but I can not progress to organize the file in a date frame format. Could someone help me...
asked by 14.08.2018 / 17:00