--- title: "Synthetic data" description: > To understand how surveygraph handles irregular data... output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Synthetic data} %\VignetteEngine{knitr::rmarkdown} \usepackage[utf8]{inputenc} --- ```{r, echo = FALSE, message = FALSE, warning = FALSE} knitr::opts_chunk$set(collapse = T, comment = "#>") options(tibble.print_min = 4L, tibble.print_max = 4L) ``` _This page is under development. Stay tuned._ We include in surveygraph the routine `make_synthetic_data()` that produces simple model survey data. We'll start by loading surveygraph: ```{r, message = FALSE} library(surveygraph) ``` Now we initialise a data frame. ```{r} df <- data.frame(item1 = c(1, 2, 3), item2 = c(4, 5, 7)) ```