Nicholas Tierney
Nicholas Tierney
Just adding a little helper function to create different sized data. ``` r library(tidyverse) library(brolgar) create_example_tsibble 1 A 1 1 0.613 Alabama #> 2 A 2 0 -0.397 California #>...
From https://github.com/tidyverts/fabletools/issues/258 A way around this: library(brolgar) # range wages %>% features(ln_wages, list(range = ~ setNames(range(.), c("min", "max")))) #> # A tibble: 888 x 3 #> id range_min range_max #>...
Perhaps something like this? ``` r library(naniar) library(brolgar) library(dplyr) #> #> Attaching package: 'dplyr' #> The following objects are masked from 'package:stats': #> #> filter, lag #> The following objects...
* Aim to move any new functions from this into `naniar`. * Aim to demonstrate missingness functions in a workflow
Thanks for posting the issue, @emitanaka ! This seems like a bug, I'll fix this before submitting to CRAN.
Diggle et al.’s “Analysis of Longitudinal Data” > There is no single prescription for making effective graphical displays of longitudinal data, but the following are a few simple guidelines: >...
https://journals.openedition.org/cybergeo/26530?lang=en
https://python-graph-gallery.com/124-spaghetti-plot/
https://stats.idre.ucla.edu/r/faq/how-can-i-visualize-longitudinal-data-in-ggplot2/ * has a nice approach to adding quantiles of the values
https://rstudio-pubs-static.s3.amazonaws.com/195173_5731e1c19c644b71bff5ba9d8031fb0e.html