{"id":25109942,"url":"https://github.com/smac-group/avar","last_synced_at":"2025-06-11T04:03:01.642Z","repository":{"id":41755345,"uuid":"131925406","full_name":"SMAC-Group/avar","owner":"SMAC-Group","description":":airplane: Computationally efficient implementation of the Allan variance.","archived":false,"fork":false,"pushed_at":"2022-07-11T18:20:29.000Z","size":103687,"stargazers_count":5,"open_issues_count":4,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-05-26T22:37:34.456Z","etag":null,"topics":["allan-variance","inertial-sensors","statistics","time-series"],"latest_commit_sha":null,"homepage":"https://smac-group.github.io/avar/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SMAC-Group.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-03T01:33:04.000Z","updated_at":"2025-01-13T03:26:31.000Z","dependencies_parsed_at":"2022-07-18T08:13:12.760Z","dependency_job_id":null,"html_url":"https://github.com/SMAC-Group/avar","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SMAC-Group%2Favar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SMAC-Group%2Favar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SMAC-Group%2Favar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SMAC-Group%2Favar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SMAC-Group","download_url":"https://codeload.github.com/SMAC-Group/avar/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SMAC-Group%2Favar/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259195817,"owners_count":22820030,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["allan-variance","inertial-sensors","statistics","time-series"],"created_at":"2025-02-08T00:33:40.285Z","updated_at":"2025-06-11T04:03:01.582Z","avatar_url":"https://github.com/SMAC-Group.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\noutput: github_document\nbibliography: biblio.bib\n---\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, echo=FALSE, message=FALSE, warning=FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  dpi = 300,\n  out.width = \"100%\",\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\"\n)\n\nlibrary(avar)\n```\n[![R-CMD-check](https://github.com/SMAC-Group/avar/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/SMAC-Group/avar/actions/workflows/R-CMD-check.yaml)\n[![Project Status: Active](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active/)\n[![Licence](https://img.shields.io/badge/licence-AGPL--3.0-blue.svg)](https://opensource.org/licenses/AGPL-3.0)\n[![minimal R version](https://img.shields.io/badge/R%3E%3D-3.4.0-6666ff.svg)](https://cran.r-project.org/)\n[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/avar)](https://www.r-pkg.org/pkg/avar)\n[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/avar)](https://www.r-pkg.org/pkg/avar)\n[![Last-changedate](https://img.shields.io/badge/last%20change-`r gsub('-', '--', Sys.Date())`-yellowgreen.svg)](https://github.com/SMAC-Group/avar)\n\n\n# Welcome to the `avar` package \u003ca href=\"https://smac-group.com/\"\u003e\u003cimg src=\"man/figures/logo.png\" align=\"right\" style=\"width: 16%; height: 16%\"/\u003e\u003c/a\u003e\n\nThis package provides the tools necessary to compute the empirical Allan Variance (AV) and use it to estimate the parameters of (latent) time series models. The estimation of the Allan Variance is performed through the estimator proposed by @allan1966statistics and, based on this quantity, the Allan Variance Linear Regression (AVLR) approach (or Allan Variance Slope Method) is often used by engineers to retrieve the parameters of time series models which are assumed to underlie the observed signals [see for example @guerrier2016theoretical]. These estimators are implemented in this package along with the relevant plotting and summary functions.\n\n\n## Install Instructions\n\nThe `avar` package is available on both CRAN and GitHub. The CRAN version is considered stable while the GitHub version is subject to modifications/updates which may lead to installation problems or broken functions. You can install the stable version of the `avar` package with:\n\n```{r, eval=FALSE}\ninstall.packages(\"avar\")\n```\n\nFor users who are interested in having the latest developments, the [GitHub](https://github.com/SMAC-Group/avar) version is ideal although more dependencies are required to run a stable version of the package. Most importantly, users **must** have a (C++) compiler installed on their machine that is compatible with R (e.g. Clang). Once you've made sure that you have a compatible C++ compiler installed on your computer, run the following code in an R session and you will be ready to use the devlopment version of `avar`.\n\n```{r, eval = F}\n# Install dependencies\ninstall.packages(c(\"devtools\"))\n\n# Install/Update the package from GitHub\ndevtools::install_github(\"SMAC-Group/avar\")\n\n# Install the package with Vignettes/User Guides \ndevtools::install_github(\"SMAC-Group/avar\", build_vignettes = TRUE)\n```\n\n## References\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmac-group%2Favar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmac-group%2Favar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmac-group%2Favar/lists"}