--- title: "Introduction" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Introduction} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- # Setup Suppose we’re given a vector N noisy mosquito population estimates y = (y1, y2, ..., yN ) based on trap measurements which occur at times (t1, t2, ..., tN ), representative of the population’s evolution over the course of an entire season or year τ. ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) ``` ```{r setup} library(mosqcontrol) ```