full_seq In [1]: Copied! # https://tidyr.tidyverse.org/reference/full_seq.html %run nb_helpers.py from datar.all import * nb_header(full_seq) # https://tidyr.tidyverse.org/reference/full_seq.html %run nb_helpers.py from datar.all import * nb_header(full_seq) Try this notebook on binder. ★ full_seq¶ Create the full sequence of values in a vector¶Args:¶ x: A numeric vector. period: Gap between each observation. The existing data will be checked to ensure that it is actually of this periodicity. tol: Numerical tolerance for checking periodicity. Returns:¶ The full sequence In [2]: Copied! full_seq(c(1, 2, 4, 5, 10), 1) full_seq(c(1, 2, 4, 5, 10), 1) Out[2]: array([ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]) In [ ]: Copied!