--- title: "Introduction to surveygraph" description: > Getting started with surveygraph. output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Get started} %\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._ This is an introduction to the surveygraph package, a lightweight package that produces network representations of sociological data. We assume that the source data is tabular, as one finds in a survey, for instance. We assume We'll start by loading surveygraph: ```{r, message = FALSE} library(surveygraph) ``` # Similarity measure ## Another heading ## Yet another heading ### Agent layer projection ### Symbolic layer projection ```{r} df <- data.frame(item1 = c(1, 2, 3), item2 = c(4, 5, 7)) df ```