2020-11-09 19:27:07 +01:00
<!doctype html>
< html lang = "en" class = "no-js" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width,initial-scale=1" >
2021-03-29 16:42:05 +02:00
< link rel = "canonical" href = "https://www.rapids.science/workflow-examples/minimal/" >
2020-12-21 00:38:09 +01:00
2021-03-30 21:35:39 +02:00
< link rel = "icon" href = "../../img/logo.png" >
2021-03-29 16:42:05 +02:00
< meta name = "generator" content = "mkdocs-1.1.2, mkdocs-material-7.0.7+insiders-2.4.0" >
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< title > Minimal Example - RAPIDS< / title >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
< link rel = "stylesheet" href = "../../assets/stylesheets/main.ec3b3678.min.css" >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
< link rel = "stylesheet" href = "../../assets/stylesheets/palette.de2705de.min.css" >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
2020-11-09 19:27:07 +01:00
2020-12-21 00:38:09 +01:00
< link rel = "preconnect" href = "https://fonts.gstatic.com" crossorigin >
2020-11-09 19:27:07 +01:00
< link rel = "stylesheet" href = "https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback" >
2021-03-29 16:42:05 +02:00
< style > : root { --md-text-font-family : "Roboto" ; --md-code-font-family : "Roboto Mono" } < / style >
2020-11-09 19:27:07 +01:00
< link rel = "stylesheet" href = "../../stylesheets/extra.css" >
< / head >
< body dir = "ltr" data-md-color-scheme = "default" data-md-color-primary = "blue" data-md-color-accent = "blue" >
2021-03-29 16:42:05 +02:00
< script > function _ _prefix ( e ) { return new URL ( "../.." , location ) . pathname + "." + e } function _ _get ( e , t = localStorage ) { return JSON . parse ( t . getItem ( _ _prefix ( e ) ) ) } < / script >
2020-12-21 00:38:09 +01:00
2021-03-29 16:42:05 +02:00
< script > var palette = _ _get ( "__palette" ) ; if ( null !== palette && "object" == typeof palette . color ) for ( var key in palette . color ) document . body . setAttribute ( "data-md-color-" + key , palette . color [ key ] ) < / script >
2020-11-09 19:27:07 +01:00
< input class = "md-toggle" data-md-toggle = "drawer" type = "checkbox" id = "__drawer" autocomplete = "off" >
< input class = "md-toggle" data-md-toggle = "search" type = "checkbox" id = "__search" autocomplete = "off" >
< label class = "md-overlay" for = "__drawer" > < / label >
< div data-md-component = "skip" >
< a href = "#minimal-working-example" class = "md-skip" >
Skip to content
< / a >
< / div >
< div data-md-component = "announce" >
< / div >
2021-03-29 16:42:05 +02:00
< div data-md-component = "outdated" hidden >
< aside class = "md-banner md-banner--warning" >
< div class = "md-banner__inner md-grid md-typeset" >
You're not viewing the latest stable version of RAPIDS.
< a href = "https://www.rapids.science/" >
< strong > Click here to go to latest. < / strong >
< / a >
2020-12-21 00:38:09 +01:00
2021-03-29 16:42:05 +02:00
< / div >
< script > var el = document . querySelector ( "[data-md-component=outdated]" ) , outdated = _ _get ( "__outdated" , sessionStorage ) ; ! 0 === outdated && el && ( el . hidden = ! 1 ) < / script >
< / aside >
< / div >
2020-12-21 00:38:09 +01:00
2020-11-09 19:27:07 +01:00
< header class = "md-header" data-md-component = "header" >
2021-02-09 20:53:35 +01:00
< nav class = "md-header__inner md-grid" aria-label = "Header" >
2021-03-29 16:42:05 +02:00
< a href = "../.." title = "RAPIDS" class = "md-header__button md-logo" aria-label = "RAPIDS" data-md-component = "logo" >
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< img src = "../../img/logo.png" alt = "logo" >
2020-11-09 19:27:07 +01:00
< / a >
2021-02-09 20:53:35 +01:00
< label class = "md-header__button md-icon" for = "__drawer" >
2020-11-09 19:27:07 +01:00
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2z" / > < / svg >
< / label >
2021-02-09 20:53:35 +01:00
< div class = "md-header__title" data-md-component = "header-title" >
< div class = "md-header__ellipsis" >
< div class = "md-header__topic" >
2020-11-09 19:27:07 +01:00
< span class = "md-ellipsis" >
RAPIDS
< / span >
< / div >
2021-02-09 20:53:35 +01:00
< div class = "md-header__topic" data-md-component = "header-topic" >
2020-11-09 19:27:07 +01:00
< span class = "md-ellipsis" >
2021-03-30 21:35:39 +02:00
Minimal Example
2020-11-09 19:27:07 +01:00
< / span >
< / div >
< / div >
< / div >
2021-03-29 16:42:05 +02:00
< form class = "md-header__option" data-md-component = "palette" >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
< input class = "md-option" data-md-color-media = "" data-md-color-scheme = "default" data-md-color-primary = "blue" data-md-color-accent = "blue" type = "radio" name = "__palette" id = "__palette_1" >
< label class = "md-header__button md-icon" title = "Switch to light mode" for = "__palette_2" hidden >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M17 7H7a5 5 0 0 0-5 5 5 5 0 0 0 5 5h10a5 5 0 0 0 5-5 5 5 0 0 0-5-5m0 8a3 3 0 0 1-3-3 3 3 0 0 1 3-3 3 3 0 0 1 3 3 3 3 0 0 1-3 3z" / > < / svg >
< / label >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
< input class = "md-option" data-md-color-media = "" data-md-color-scheme = "slate" data-md-color-primary = "blue" data-md-color-accent = "blue" type = "radio" name = "__palette" id = "__palette_2" >
< label class = "md-header__button md-icon" title = "Switch to dark mode" for = "__palette_1" hidden >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M7 10a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2m10-3a5 5 0 0 1 5 5 5 5 0 0 1-5 5H7a5 5 0 0 1-5-5 5 5 0 0 1 5-5h10M7 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3h10a3 3 0 0 0 3-3 3 3 0 0 0-3-3H7z" / > < / svg >
< / label >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
< / form >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< label class = "md-header__button md-icon" for = "__search" >
2021-03-29 16:42:05 +02:00
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z" / > < / svg >
2020-11-09 19:27:07 +01:00
< / label >
< div class = "md-search" data-md-component = "search" role = "dialog" >
< label class = "md-search__overlay" for = "__search" > < / label >
< div class = "md-search__inner" role = "search" >
< form class = "md-search__form" name = "search" >
2021-03-29 16:42:05 +02:00
< input type = "text" class = "md-search__input" name = "query" aria-label = "Search" placeholder = "Search" autocapitalize = "off" autocorrect = "off" autocomplete = "off" spellcheck = "false" data-md-component = "search-query" required >
2020-11-09 19:27:07 +01:00
< label class = "md-search__icon md-icon" for = "__search" >
2021-03-29 16:42:05 +02:00
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z" / > < / svg >
2020-11-09 19:27:07 +01:00
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z" / > < / svg >
< / label >
2021-02-09 20:53:35 +01:00
< nav class = "md-search__options" aria-label = "Search" >
2021-03-29 16:42:05 +02:00
< button type = "reset" class = "md-search__icon md-icon" aria-label = "Clear" tabindex = "-1" >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" / > < / svg >
2021-02-09 20:53:35 +01:00
< / button >
< / nav >
2021-03-29 16:42:05 +02:00
< div class = "md-search__suggest" data-md-component = "search-suggest" > < / div >
2020-11-09 19:27:07 +01:00
< / form >
< div class = "md-search__output" >
< div class = "md-search__scrollwrap" data-md-scrollfix >
< div class = "md-search-result" data-md-component = "search-result" >
< div class = "md-search-result__meta" >
Initializing search
< / div >
< ol class = "md-search-result__list" > < / ol >
< / div >
< / div >
< / div >
< / div >
< / div >
2021-02-09 20:53:35 +01:00
< div class = "md-header__source" >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
< a href = "https://github.com/carissalow/rapids/" title = "Go to repository" class = "md-source" data-md-component = "source" >
2020-11-09 19:27:07 +01:00
< div class = "md-source__icon md-icon" >
2021-03-29 16:42:05 +02:00
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 448 512" > < path d = "M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z" / > < / svg >
2020-11-09 19:27:07 +01:00
< / div >
< div class = "md-source__repository" >
carissalow/rapids
< / div >
< / a >
< / div >
< / nav >
2020-12-21 00:38:09 +01:00
2020-11-09 19:27:07 +01:00
< / header >
< div class = "md-container" data-md-component = "container" >
2020-12-21 00:38:09 +01:00
2020-11-09 19:27:07 +01:00
< main class = "md-main" data-md-component = "main" >
< div class = "md-main__inner md-grid" >
2021-03-29 16:42:05 +02:00
< div class = "md-sidebar md-sidebar--primary" data-md-component = "sidebar" data-md-type = "navigation" >
2020-11-09 19:27:07 +01:00
< div class = "md-sidebar__scrollwrap" >
< div class = "md-sidebar__inner" >
2020-12-21 00:38:09 +01:00
2020-11-09 19:27:07 +01:00
< nav class = "md-nav md-nav--primary" aria-label = "Navigation" data-md-level = "0" >
< label class = "md-nav__title" for = "__drawer" >
2021-03-29 16:42:05 +02:00
< a href = "../.." title = "RAPIDS" class = "md-nav__button md-logo" aria-label = "RAPIDS" data-md-component = "logo" >
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< img src = "../../img/logo.png" alt = "logo" >
2020-11-09 19:27:07 +01:00
< / a >
RAPIDS
< / label >
< div class = "md-nav__source" >
2021-03-29 16:42:05 +02:00
< a href = "https://github.com/carissalow/rapids/" title = "Go to repository" class = "md-source" data-md-component = "source" >
2020-11-09 19:27:07 +01:00
< div class = "md-source__icon md-icon" >
2021-03-29 16:42:05 +02:00
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 448 512" > < path d = "M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z" / > < / svg >
2020-11-09 19:27:07 +01:00
< / div >
< div class = "md-source__repository" >
carissalow/rapids
< / div >
< / a >
< / div >
< ul class = "md-nav__list" data-md-scrollfix >
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../.." class = "md-nav__link" >
Home
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item md-nav__item--active md-nav__item--section md-nav__item--nested" >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_2" type = "checkbox" id = "__nav_2" checked >
2021-02-09 20:53:35 +01:00
2021-03-29 16:42:05 +02:00
< label class = "md-nav__link" for = "__nav_2" >
2021-02-09 20:53:35 +01:00
Setup
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Setup" data-md-level = "1" >
2021-03-29 16:42:05 +02:00
< label class = "md-nav__title" for = "__nav_2" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
Setup
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../setup/overview/" class = "md-nav__link" >
Overview
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item md-nav__item--active" >
< input class = "md-nav__toggle md-toggle" data-md-toggle = "toc" type = "checkbox" id = "__toc" >
< a href = "./" class = "md-nav__link md-nav__link--active" >
Minimal Example
< / a >
< / li >
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../setup/installation/" class = "md-nav__link" >
Installation
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../setup/configuration/" class = "md-nav__link" >
Configuration
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../setup/execution/" class = "md-nav__link" >
Execution
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item" >
< a href = "../../citation/" class = "md-nav__link" >
Citation
< / a >
< / li >
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item md-nav__item--section md-nav__item--nested" >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_3" type = "checkbox" id = "__nav_3" >
2021-02-09 20:53:35 +01:00
2021-03-29 16:42:05 +02:00
< label class = "md-nav__link" for = "__nav_3" >
2021-03-30 21:35:39 +02:00
Data Streams
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
< / label >
2021-03-30 21:35:39 +02:00
< nav class = "md-nav" aria-label = "Data Streams" data-md-level = "1" >
2021-03-29 16:42:05 +02:00
< label class = "md-nav__title" for = "__nav_3" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
2021-03-30 21:35:39 +02:00
Data Streams
2021-02-09 20:53:35 +01:00
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item" >
< a href = "../../datastreams/data-streams-introduction/" class = "md-nav__link" >
Introduction
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item md-nav__item--nested" >
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_3_2" type = "checkbox" id = "__nav_3_2" >
< label class = "md-nav__link" for = "__nav_3_2" >
Phone
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Phone" data-md-level = "2" >
< label class = "md-nav__title" for = "__nav_3_2" >
< span class = "md-nav__icon md-icon" > < / span >
Phone
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item" >
< a href = "../../datastreams/aware-mysql/" class = "md-nav__link" >
aware_mysql
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/aware-csv/" class = "md-nav__link" >
aware_csv
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/aware-influxdb/" class = "md-nav__link" >
aware_influxdb (beta)
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/mandatory-phone-format/" class = "md-nav__link" >
Mandatory Phone Format
< / a >
< / li >
< / ul >
< / nav >
< / li >
< li class = "md-nav__item md-nav__item--nested" >
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-03-30 21:35:39 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_3_3" type = "checkbox" id = "__nav_3_3" >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< label class = "md-nav__link" for = "__nav_3_3" >
Fitbit
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Fitbit" data-md-level = "2" >
< label class = "md-nav__title" for = "__nav_3_3" >
< span class = "md-nav__icon md-icon" > < / span >
Fitbit
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
< li class = "md-nav__item" >
< a href = "../../datastreams/fitbitjson-mysql/" class = "md-nav__link" >
fitbitjson_mysql
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/fitbitjson-csv/" class = "md-nav__link" >
fitbitjson_csv
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/fitbitparsed-mysql/" class = "md-nav__link" >
fitbitparsed_mysql
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/fitbitparsed-csv/" class = "md-nav__link" >
fitbitparsed_csv
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/mandatory-fitbit-format/" class = "md-nav__link" >
Mandatory Fitbit Format
2021-02-09 20:53:35 +01:00
< / a >
2021-03-30 21:35:39 +02:00
< / li >
< / ul >
< / nav >
< / li >
< li class = "md-nav__item md-nav__item--nested" >
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_3_4" type = "checkbox" id = "__nav_3_4" >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< label class = "md-nav__link" for = "__nav_3_4" >
Empatica
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Empatica" data-md-level = "2" >
< label class = "md-nav__title" for = "__nav_3_4" >
< span class = "md-nav__icon md-icon" > < / span >
Empatica
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
< li class = "md-nav__item" >
< a href = "../../datastreams/empatica-zip/" class = "md-nav__link" >
empatica_zip
< / a >
2021-02-09 20:53:35 +01:00
< / li >
2020-12-21 00:38:09 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../datastreams/mandatory-empatica-format/" class = "md-nav__link" >
Mandatory Empatica Format
< / a >
< / li >
< / ul >
< / nav >
< / li >
< li class = "md-nav__item" >
< a href = "../../datastreams/add-new-data-streams/" class = "md-nav__link" >
Add New Data Streams
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-12-03 18:51:21 +01:00
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item md-nav__item--section md-nav__item--nested" >
2021-03-29 16:42:05 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_4" type = "checkbox" id = "__nav_4" >
2021-02-09 20:53:35 +01:00
2021-03-29 16:42:05 +02:00
< label class = "md-nav__link" for = "__nav_4" >
2021-02-09 20:53:35 +01:00
Behavioral Features
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Behavioral Features" data-md-level = "1" >
2021-03-29 16:42:05 +02:00
< label class = "md-nav__title" for = "__nav_4" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
Behavioral Features
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../features/feature-introduction/" class = "md-nav__link" >
Introduction
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item md-nav__item--nested" >
2021-03-29 16:42:05 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_4_2" type = "checkbox" id = "__nav_4_2" >
2021-02-09 20:53:35 +01:00
2021-03-29 16:42:05 +02:00
< label class = "md-nav__link" for = "__nav_4_2" >
2021-02-09 20:53:35 +01:00
Phone
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Phone" data-md-level = "2" >
2021-03-29 16:42:05 +02:00
< label class = "md-nav__title" for = "__nav_4_2" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
Phone
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../features/phone-accelerometer/" class = "md-nav__link" >
Phone Accelerometer
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../features/phone-activity-recognition/" class = "md-nav__link" >
Phone Activity Recognition
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../features/phone-applications-crashes/" class = "md-nav__link" >
Phone Applications Crashes
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/phone-applications-foreground/" class = "md-nav__link" >
Phone Applications Foreground
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-applications-notifications/" class = "md-nav__link" >
Phone Applications Notifications
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-battery/" class = "md-nav__link" >
Phone Battery
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-bluetooth/" class = "md-nav__link" >
Phone Bluetooth
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-calls/" class = "md-nav__link" >
Phone Calls
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-conversation/" class = "md-nav__link" >
Phone Conversation
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-data-yield/" class = "md-nav__link" >
Phone Data Yield
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-keyboard/" class = "md-nav__link" >
Phone Keyboard
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/phone-light/" class = "md-nav__link" >
Phone Light
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/phone-locations/" class = "md-nav__link" >
Phone Locations
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/phone-log/" class = "md-nav__link" >
Phone Log
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/phone-messages/" class = "md-nav__link" >
Phone Messages
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/phone-screen/" class = "md-nav__link" >
Phone Screen
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/phone-wifi-connected/" class = "md-nav__link" >
Phone WiFI Connected
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/phone-wifi-visible/" class = "md-nav__link" >
Phone WiFI Visible
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-26 01:43:05 +01:00
2021-03-30 21:35:39 +02:00
< / ul >
< / nav >
< / li >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item md-nav__item--nested" >
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_4_3" type = "checkbox" id = "__nav_4_3" >
< label class = "md-nav__link" for = "__nav_4_3" >
Fitbit
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Fitbit" data-md-level = "2" >
< label class = "md-nav__title" for = "__nav_4_3" >
< span class = "md-nav__icon md-icon" > < / span >
Fitbit
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/fitbit-data-yield/" class = "md-nav__link" >
Fitbit Data Yield
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2021-01-26 19:42:28 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/fitbit-heartrate-summary/" class = "md-nav__link" >
Fitbit Heart Rate Summary
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/fitbit-heartrate-intraday/" class = "md-nav__link" >
Fitbit Heart Rate Intraday
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/fitbit-sleep-summary/" class = "md-nav__link" >
Fitbit Sleep Summary
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/fitbit-sleep-intraday/" class = "md-nav__link" >
Fitbit Sleep Intraday
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/fitbit-steps-summary/" class = "md-nav__link" >
Fitbit Steps Summary
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/fitbit-steps-intraday/" class = "md-nav__link" >
Fitbit Steps Intraday
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item md-nav__item--nested" >
2021-03-30 21:35:39 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_4_4" type = "checkbox" id = "__nav_4_4" >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< label class = "md-nav__link" for = "__nav_4_4" >
Empatica
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
< / label >
2021-03-30 21:35:39 +02:00
< nav class = "md-nav" aria-label = "Empatica" data-md-level = "2" >
< label class = "md-nav__title" for = "__nav_4_4" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
2021-03-30 21:35:39 +02:00
Empatica
2021-02-09 20:53:35 +01:00
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/empatica-accelerometer/" class = "md-nav__link" >
Empatica Accelerometer
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
2021-02-03 17:42:10 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/empatica-heartrate/" class = "md-nav__link" >
Empatica Heart Rate
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2021-02-03 17:42:10 +01:00
2021-02-09 20:53:35 +01:00
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/empatica-temperature/" class = "md-nav__link" >
Empatica Temperature
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/empatica-electrodermal-activity/" class = "md-nav__link" >
Empatica Electrodermal Activity
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
2020-11-23 22:53:20 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/empatica-blood-volume-pulse/" class = "md-nav__link" >
Empatica Blood Volume Pulse
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-23 22:53:20 +01:00
2021-02-09 20:53:35 +01:00
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../features/empatica-inter-beat-interval/" class = "md-nav__link" >
Empatica Inter Beat Interval
< / a >
< / li >
< li class = "md-nav__item" >
< a href = "../../features/empatica-tags/" class = "md-nav__link" >
Empatica Tags
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../features/add-new-features/" class = "md-nav__link" >
Add New Features
< / a >
< / li >
2020-11-19 18:31:39 +01:00
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item md-nav__item--section md-nav__item--nested" >
2021-03-29 16:42:05 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_5" type = "checkbox" id = "__nav_5" >
2021-02-09 20:53:35 +01:00
2021-03-29 16:42:05 +02:00
< label class = "md-nav__link" for = "__nav_5" >
2021-02-09 20:53:35 +01:00
Visualizations
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Visualizations" data-md-level = "1" >
2021-03-29 16:42:05 +02:00
< label class = "md-nav__title" for = "__nav_5" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
Visualizations
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../visualizations/data-quality-visualizations/" class = "md-nav__link" >
Data Quality
< / a >
< / li >
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../visualizations/feature-visualizations/" class = "md-nav__link" >
Features
< / a >
< / li >
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item md-nav__item--section md-nav__item--nested" >
2021-03-29 16:42:05 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_6" type = "checkbox" id = "__nav_6" >
2021-02-09 20:53:35 +01:00
2021-03-29 16:42:05 +02:00
< label class = "md-nav__link" for = "__nav_6" >
2021-03-30 21:35:39 +02:00
Analysis Workflows
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Analysis Workflows" data-md-level = "1" >
< label class = "md-nav__title" for = "__nav_6" >
< span class = "md-nav__icon md-icon" > < / span >
Analysis Workflows
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
< li class = "md-nav__item" >
< a href = "../analysis/" class = "md-nav__link" >
Complete Example
< / a >
< / li >
< / ul >
< / nav >
< / li >
< li class = "md-nav__item md-nav__item--section md-nav__item--nested" >
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_7" type = "checkbox" id = "__nav_7" >
< label class = "md-nav__link" for = "__nav_7" >
2021-02-09 20:53:35 +01:00
Developers
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Developers" data-md-level = "1" >
2021-03-30 21:35:39 +02:00
< label class = "md-nav__title" for = "__nav_7" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
Developers
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../developers/git-flow/" class = "md-nav__link" >
Git Flow
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-12-12 23:19:03 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../developers/remote-support/" class = "md-nav__link" >
Remote Support
< / a >
< / li >
2020-12-12 23:19:03 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../developers/virtual-environments/" class = "md-nav__link" >
Virtual Environments
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../developers/documentation/" class = "md-nav__link" >
Documentation
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../developers/testing/" class = "md-nav__link" >
Testing
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../developers/test-cases/" class = "md-nav__link" >
Test cases
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< li class = "md-nav__item" >
< a href = "../../developers/validation-schema-config/" class = "md-nav__link" >
Validation schema of config.yaml
< / a >
< / li >
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item md-nav__item--section md-nav__item--nested" >
2021-03-30 21:35:39 +02:00
< input class = "md-nav__toggle md-toggle" data-md-toggle = "__nav_8" type = "checkbox" id = "__nav_8" >
2021-02-09 20:53:35 +01:00
2021-03-30 21:35:39 +02:00
< label class = "md-nav__link" for = "__nav_8" >
2021-02-09 20:53:35 +01:00
Others
< span class = "md-nav__icon md-icon" > < / span >
< / label >
< nav class = "md-nav" aria-label = "Others" data-md-level = "1" >
2021-03-30 21:35:39 +02:00
< label class = "md-nav__title" for = "__nav_8" >
2021-02-09 20:53:35 +01:00
< span class = "md-nav__icon md-icon" > < / span >
Others
< / label >
< ul class = "md-nav__list" data-md-scrollfix >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../migrating-from-old-versions/" class = "md-nav__link" >
2021-03-30 21:35:39 +02:00
Migrating from an old version
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-12-04 00:59:04 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../code_of_conduct/" class = "md-nav__link" >
Code of Conduct
< / a >
< / li >
2020-12-04 00:59:04 +01:00
2021-02-09 20:53:35 +01:00
2020-11-30 19:51:58 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
2021-03-30 21:35:39 +02:00
< a href = "../../common-errors/" class = "md-nav__link" >
Common Errors
2021-02-09 20:53:35 +01:00
< / a >
< / li >
2020-11-30 19:51:58 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../team/" class = "md-nav__link" >
Team
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
< li class = "md-nav__item" >
< a href = "../../change-log/" class = "md-nav__link" >
Change Log
< / a >
< / li >
2020-11-09 19:27:07 +01:00
2021-02-09 20:53:35 +01:00
2020-12-04 22:22:17 +01:00
2021-02-09 20:53:35 +01:00
< / ul >
< / nav >
< / li >
2020-11-09 19:27:07 +01:00
< / ul >
< / nav >
< / div >
< / div >
< / div >
2021-03-29 16:42:05 +02:00
< div class = "md-sidebar md-sidebar--secondary" data-md-component = "sidebar" data-md-type = "toc" >
2020-11-09 19:27:07 +01:00
< div class = "md-sidebar__scrollwrap" >
< div class = "md-sidebar__inner" >
< nav class = "md-nav md-nav--secondary" aria-label = "Table of contents" >
< / nav >
< / div >
< / div >
< / div >
2021-03-29 16:42:05 +02:00
< div class = "md-content" data-md-component = "content" >
2020-11-09 19:27:07 +01:00
< article class = "md-content__inner md-typeset" >
< a href = "https://github.com/carissalow/rapids/edit/master/docs/workflow-examples/minimal.md" title = "Edit this page" class = "md-content__button md-icon" >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83 3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75L3 17.25z" / > < / svg >
< / a >
< h1 id = "minimal-working-example" > Minimal Working Example< a class = "headerlink" href = "#minimal-working-example" title = "Permanent link" > ¶ < / a > < / h1 >
2021-03-30 21:35:39 +02:00
< p > This is a quick guide for creating and running a simple pipeline to extract missing, outgoing, and incoming < code > call< / code > features for < code > 24 hr< / code > (< code > 00:00:00< / code > to < code > 23:59:59< / code > ) and < code > night< / code > (< code > 00:00:00< / code > to < code > 05:59:59< / code > ) time segments of every day of data of one participant that was monitored on the US East coast with an Android smartphone.< / p >
2020-11-09 19:27:07 +01:00
< ol >
< li > Install RAPIDS and make sure your < code > conda< / code > environment is active (see < a href = "../../setup/installation" > Installation< / a > )< / li >
2021-03-30 21:35:39 +02:00
< li > Download this < a href = "../../img/calls.csv" > CSV file< / a > and save it as < code > data/external/aware_csv/calls.csv< / code > < / li >
2020-11-09 19:27:07 +01:00
< li >
2020-12-02 23:28:00 +01:00
< p > Make the changes listed below for the corresponding < a href = "../../setup/configuration" > Configuration< / a > step (we provide an example of what the relevant sections in your < code > config.yml< / code > will look like after you are done)< / p >
2021-03-30 21:35:39 +02:00
< details class = "info" > < summary > Required configuration changes (< em > click to expand< / em > )< / summary > < ol >
2020-12-21 22:32:44 +01:00
< li >
2021-03-30 21:35:39 +02:00
< p > < strong > Supported < a href = "../../setup/configuration#supported-data-streams" > data streams< / a > .< / strong > < / p >
< p > Based on the docs, we decided to use the < code > aware_csv< / code > data stream because we are processing aware data saved in a CSV file. We will use this label in a later step; there’ s no need to type it or save it anywhere yet.< / p >
2020-12-21 22:32:44 +01:00
< / li >
< li >
2021-03-30 21:35:39 +02:00
< p > < strong > Create your < a href = "../../setup/configuration#participant-files" > participants file< / a > .< / strong > < / p >
< p > Since we are processing data from a single participant, you only need to create a single participant file called < code > p01.yaml< / code > in < code > data/external/participant_files< / code > . This participant file only has a < code > PHONE< / code > section because this hypothetical participant was only monitored with a smartphone. Note that for a real analysis, you can do this < a href = "../../setup/configuration##automatic-creation-of-participant-files" > automatically with a CSV file< / a > < / p >
< ol >
< li >
< p > Add < code > p01< / code > to < code > [PIDS]< / code > in < code > config.yaml< / code > < / p >
2020-12-21 22:32:44 +01:00
< / li >
< li >
2021-03-30 21:35:39 +02:00
< p > Create a file in < code > data/external/participant_files/p01.yaml< / code > with the following content:< / p >
< div class = "highlight" > < pre > < span > < / span > < code > < span class = "nt" > PHONE< / span > < span class = "p" > :< / span >
2020-12-21 22:32:44 +01:00
< span class = "nt" > DEVICE_IDS< / span > < span class = "p" > :< / span > < span class = "p p-Indicator" > [< / span > < span class = "nv" > a748ee1a-1d0b-4ae9-9074-279a2b6ba524< / span > < span class = "p p-Indicator" > ]< / span > < span class = "c1" > # the participant' s AWARE device id< / span >
2020-11-17 23:28:47 +01:00
< span class = "nt" > PLATFORMS< / span > < span class = "p" > :< / span > < span class = "p p-Indicator" > [< / span > < span class = "nv" > android< / span > < span class = "p p-Indicator" > ]< / span > < span class = "c1" > # or ios< / span >
< span class = "nt" > LABEL< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > MyTestP01< / span > < span class = "c1" > # any string< / span >
< span class = "nt" > START_DATE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > 2020-01-01< / span > < span class = "c1" > # this can also be empty< / span >
< span class = "nt" > END_DATE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > 2021-01-01< / span > < span class = "c1" > # this can also be empty< / span >
2021-03-30 21:35:39 +02:00
< / code > < / pre > < / div >
< / li >
< / ol >
2020-12-21 22:32:44 +01:00
< / li >
< li >
< p > < strong > Select what < a href = "../../setup/configuration#time-segments" > time segments< / a > you want to extract features on.< / strong > < / p >
2021-03-30 21:35:39 +02:00
< ol >
< li >
< p > Set < code > [TIME_SEGMENTS][FILE]< / code > to < code > data/external/timesegments_periodic.csv< / code > < / p >
< / li >
< li >
< p > Create a file in < code > data/external/timesegments_periodic.csv< / code > with the following content< / p >
< div class = "highlight" > < pre > < span > < / span > < code > label,start_time,length,repeats_on,repeats_value
2020-11-09 19:27:07 +01:00
daily,00:00:00,23H 59M 59S,every_day,0
night,00:00:00,5H 59M 59S,every_day,0
2021-03-30 21:35:39 +02:00
< / code > < / pre > < / div >
< / li >
< / ol >
< / li >
< li >
< p > < strong > Choose the < a href = "../../setup/configuration#timezone-of-your-study" > timezone of your study< / a > .< / strong > < / p >
< p > We will use the default time zone settings since this example is processing data collected on the US East Coast (< code > America/New_York< / code > )< / p >
< div class = "highlight" > < pre > < span > < / span > < code > < span class = "nt" > TIMEZONE< / span > < span class = "p" > :< / span >
< span class = "nt" > TYPE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > SINGLE< / span >
< span class = "nt" > SINGLE< / span > < span class = "p" > :< / span >
< span class = "nt" > TZCODE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > America/New_York< / span >
< / code > < / pre > < / div >
< / li >
< li >
< p > < strong > Modify your < a href = "../../setup/configuration#data-stream-configuration" > device data stream configuration< / a > < / strong > < / p >
< ol >
< li >
< p > Set < code > [PHONE_DATA_STREAMS][USE]< / code > to < code > aware_csv< / code > . < / p >
2020-12-21 22:32:44 +01:00
< / li >
< li >
2021-03-30 21:35:39 +02:00
< p > We will use the default value for < code > [PHONE_DATA_STREAMS][aware_csv][FOLDER]< / code > since we already stored the test calls CSV file there.< / p >
< / li >
< / ol >
2020-12-21 22:32:44 +01:00
< / li >
< li >
< p > < strong > Select what < a href = "../../setup/configuration#sensor-and-features-to-process" > sensors and features< / a > you want to process.< / strong > < / p >
2021-03-30 21:35:39 +02:00
< ol >
< li >
< p > Set < code > [PHONE_CALLS][CONTAINER]< / code > to < code > calls.csv< / code > in the < code > config.yaml< / code > file.< / p >
< / li >
< li >
2020-12-21 22:32:44 +01:00
< p > Set < code > [PHONE_CALLS][PROVIDERS][RAPIDS][COMPUTE]< / code > to < code > True< / code > in the < code > config.yaml< / code > file.< / p >
< / li >
< / ol >
2021-03-30 21:35:39 +02:00
< / li >
< / ol >
2020-12-03 21:52:50 +01:00
< / details >
2021-03-30 21:35:39 +02:00
< div class = "admonition example" >
< p class = "admonition-title" > Example of the < code > config.yaml< / code > sections after the changes outlined above< / p >
< p > This will be your < code > config.yaml< / code > after following the instructions above. Click on the numbered markers to know more.< / p >
< div class = "annotate highlight" > < pre > < span > < / span > < code > < span class = "nt" > PIDS< / span > < span class = "p" > :< / span > < span class = "p p-Indicator" > [< / span > < span class = "nv" > p01< / span > < span class = "p p-Indicator" > ]< / span > < span class = "c1" > # (1)< / span >
< span class = "nt" > TIMEZONE< / span > < span class = "p" > :< / span >
< span class = "nt" > TYPE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > SINGLE< / span > < span class = "c1" > # (2)< / span >
< span class = "nt" > SINGLE< / span > < span class = "p" > :< / span >
< span class = "nt" > TZCODE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > America/New_York< / span >
2020-12-21 22:32:44 +01:00
< span class = "c1" > # ... other irrelevant sections< / span >
< span class = "nt" > TIME_SEGMENTS< / span > < span class = "p" > :< / span > < span class = "nl" > & time_segments< / span >
2021-03-30 21:35:39 +02:00
< span class = "nt" > TYPE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > PERIODIC< / span > < span class = "c1" > # (3)< / span >
< span class = "nt" > FILE< / span > < span class = "p" > :< / span > < span class = "s" > " data/external/timesegments_periodic.csv" < / span > < span class = "c1" > # (4)< / span >
< span class = "nt" > INCLUDE_PAST_PERIODIC_SEGMENTS< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > FALSE< / span >
2020-12-21 22:32:44 +01:00
2021-03-30 21:35:39 +02:00
< span class = "nt" > PHONE_DATA_STREAMS< / span > < span class = "p" > :< / span >
< span class = "nt" > USE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > aware_csv< / span > < span class = "c1" > # (5)< / span >
< span class = "nt" > aware_csv< / span > < span class = "p" > :< / span >
< span class = "nt" > FOLDER< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > data/external/aware_csv< / span > < span class = "c1" > # (6)< / span >
< span class = "c1" > # ... other irrelevant sections< / span >
2020-12-21 22:32:44 +01:00
< span class = "c1" > ############## PHONE ###########################################################< / span >
< span class = "c1" > ################################################################################< / span >
< span class = "c1" > # ... other irrelevant sections< / span >
< span class = "c1" > # Communication call features config, TYPES and FEATURES keys need to match< / span >
< span class = "nt" > PHONE_CALLS< / span > < span class = "p" > :< / span >
2021-03-30 21:35:39 +02:00
< span class = "nt" > CONTAINER< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > calls.csv< / span > < span class = "c1" > # (7) < / span >
2020-12-21 22:32:44 +01:00
< span class = "nt" > PROVIDERS< / span > < span class = "p" > :< / span >
< span class = "nt" > RAPIDS< / span > < span class = "p" > :< / span >
2021-03-30 21:35:39 +02:00
< span class = "nt" > COMPUTE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > True< / span > < span class = "c1" > # (8)< / span >
< span class = "nt" > CALL_TYPES< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > ...< / span >
< / code > < / pre > < / div >
< ol >
< li >
< p > We added < code > p01< / code > to PIDS after creating the participant file:
< div class = "highlight" > < pre > < span > < / span > < code > data/external/participant_files/p01.yaml
2020-12-21 22:32:44 +01:00
< / code > < / pre > < / div > < / p >
2021-03-30 21:35:39 +02:00
< p > With the following content:
< div class = "highlight" > < pre > < span > < / span > < code > < span class = "nt" > PHONE< / span > < span class = "p" > :< / span >
< span class = "nt" > DEVICE_IDS< / span > < span class = "p" > :< / span > < span class = "p p-Indicator" > [< / span > < span class = "nv" > a748ee1a-1d0b-4ae9-9074-279a2b6ba524< / span > < span class = "p p-Indicator" > ]< / span > < span class = "c1" > # the participant' s AWARE device id< / span >
< span class = "nt" > PLATFORMS< / span > < span class = "p" > :< / span > < span class = "p p-Indicator" > [< / span > < span class = "nv" > android< / span > < span class = "p p-Indicator" > ]< / span > < span class = "c1" > # or ios< / span >
< span class = "nt" > LABEL< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > MyTestP01< / span > < span class = "c1" > # any string< / span >
< span class = "nt" > START_DATE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > 2020-01-01< / span > < span class = "c1" > # this can also be empty< / span >
< span class = "nt" > END_DATE< / span > < span class = "p" > :< / span > < span class = "l l-Scalar l-Scalar-Plain" > 2021-01-01< / span > < span class = "c1" > # this can also be empty< / span >
< / code > < / pre > < / div > < / p >
< / li >
< li >
< p > We use the default < code > SINGLE< / code > time zone.< / p >
< / li >
< li >
< p > We use the default < code > PERIODIC< / code > time segment < code > [TYPE]< / code > < / p >
< / li >
< li >
< p > We created this time segments file with these lines:< / p >
< div class = "highlight" > < pre > < span > < / span > < code > label,start_time,length,repeats_on,repeats_value
daily,00:00:00,23H 59M 59S,every_day,0
night,001:00:00,5H 59M 59S,every_day,0
< / code > < / pre > < / div >
< / li >
< li >
< p > We set < code > [USE]< / code > to < code > aware_device< / code > to tell RAPIDS to process sensor data collected with the AWARE Framework stored in CSV files.< / p >
< / li >
< li >
< p > We used the default < code > [FOLDER]< / code > for < code > awre_csv< / code > since we already stored our test < code > calls.csv< / code > file there< / p >
< / li >
< li >
< p > We changed < code > [CONTAINER]< / code > to < code > calls.csv< / code > to process our test call data.< / p >
< / li >
< li >
< p > We flipped < code > [COMPUTE]< / code > to < code > True< / code > to extract call behavioral features using the < code > RAPIDS< / code > feature provider.< / p >
< / li >
< / ol >
< / div >
2020-11-09 19:27:07 +01:00
< / li >
< li >
< p > Run RAPIDS
< div class = "highlight" > < pre > < span > < / span > < code > ./rapids -j1
< / code > < / pre > < / div > < / p >
< / li >
2020-12-03 00:58:16 +01:00
< li > The call features for daily and morning time segments will be in
2021-03-30 21:35:39 +02:00
< div class = "highlight" > < pre > < span > < / span > < code > data/processed/features/all_participants/all_sensor_features.csv
2020-11-09 19:27:07 +01:00
< / code > < / pre > < / div > < / li >
< / ol >
2021-03-30 21:35:39 +02:00
<!-- Add custom comment system integration here -->
<!-- Utterances integration -->
< h2 id = "__comments" > Comments< / h2 >
< script type = "text/javascript" >
var rapids_utterances_theme = false
document.onreadystatechange = function () {
if (document.readyState == "interactive") {
// wait for utterances to load and send it's first message.
addEventListener('message', event => {
if (event.origin !== 'https://utteranc.es' || rapids_utterances_theme == true) {
return;
}
rapids_utterances_theme = true
if(document.body.getAttribute("data-md-color-scheme") == "default")
document.querySelector("iframe.utterances-frame").contentWindow.postMessage({ type: "set-theme", theme: "github-light" },"https://utteranc.es/")
else
document.querySelector("iframe.utterances-frame").contentWindow.postMessage({ type: "set-theme", theme: "photon-dark" },"https://utteranc.es/")
});
document.getElementById('__palette_1').onclick = function(){
document.querySelector("iframe.utterances-frame").contentWindow.postMessage({ type: "set-theme", theme: "github-light" },"https://utteranc.es/")
}
document.getElementById('__palette_2').onclick = function(){
document.querySelector("iframe.utterances-frame").contentWindow.postMessage({ type: "set-theme", theme: "photon-dark" },"https://utteranc.es/")
}
}
}
< / script >
< script src = "https://utteranc.es/client.js"
repo="carissalow/rapids"
issue-term="pathname"
label="docs comments"
theme="github-light"
crossorigin="anonymous"
async>
< / script >
2020-11-09 19:27:07 +01:00
< / article >
< / div >
< / div >
2021-03-29 16:42:05 +02:00
2020-11-09 19:27:07 +01:00
< / main >
< footer class = "md-footer" >
2021-02-09 20:53:35 +01:00
< nav class = "md-footer__inner md-grid" aria-label = "Footer" >
2021-03-30 21:35:39 +02:00
< a href = "../../setup/overview/" class = "md-footer__link md-footer__link--prev" rel = "prev" >
2021-02-09 20:53:35 +01:00
< div class = "md-footer__button md-icon" >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z" / > < / svg >
< / div >
< div class = "md-footer__title" >
< div class = "md-ellipsis" >
< span class = "md-footer__direction" >
Previous
< / span >
2021-03-30 21:35:39 +02:00
Overview
2020-11-09 19:27:07 +01:00
< / div >
2021-02-09 20:53:35 +01:00
< / div >
< / a >
2021-03-30 21:35:39 +02:00
< a href = "../../setup/installation/" class = "md-footer__link md-footer__link--next" rel = "next" >
2021-02-09 20:53:35 +01:00
< div class = "md-footer__title" >
< div class = "md-ellipsis" >
< span class = "md-footer__direction" >
Next
< / span >
2021-03-30 21:35:39 +02:00
Installation
2020-11-09 19:27:07 +01:00
< / div >
2021-02-09 20:53:35 +01:00
< / div >
< div class = "md-footer__button md-icon" >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 24 24" > < path d = "M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z" / > < / svg >
< / div >
< / a >
< / nav >
2020-11-09 19:27:07 +01:00
< div class = "md-footer-meta md-typeset" >
< div class = "md-footer-meta__inner md-grid" >
< div class = "md-footer-copyright" >
< div class = "md-footer-copyright__highlight" >
Released under AGPL
< / div >
Made with
2020-12-21 00:38:09 +01:00
< a href = "https://squidfunk.github.io/mkdocs-material/" target = "_blank" rel = "noopener" >
2020-11-09 19:27:07 +01:00
Material for MkDocs Insiders
< / a >
2021-03-29 16:42:05 +02:00
2020-11-09 19:27:07 +01:00
< / div >
< div class = "md-footer-social" >
< a href = "https://twitter.com/julio_ui" target = "_blank" rel = "noopener" title = "twitter.com" class = "md-footer-social__link" >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 512 512" > < path d = "M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" / > < / svg >
< / a >
< / div >
< / div >
< / div >
< / footer >
< / div >
2021-03-29 16:42:05 +02:00
< div class = "md-dialog" data-md-component = "dialog" >
< div class = "md-dialog__inner md-typeset" > < / div >
< / div >
< script id = "__config" type = "application/json" > { "base" : "../.." , "features" : [ "navigation.sections" , "search.suggest" , "search.highlight" ] , "translations" : { "clipboard.copy" : "Copy to clipboard" , "clipboard.copied" : "Copied to clipboard" , "search.config.lang" : "en" , "search.config.pipeline" : "trimmer, stopWordFilter" , "search.config.separator" : "[\\s\\-]+" , "search.placeholder" : "Search" , "search.result.placeholder" : "Type to start searching" , "search.result.none" : "No matching documents" , "search.result.one" : "1 matching document" , "search.result.other" : "# matching documents" , "search.result.more.one" : "1 more on this page" , "search.result.more.other" : "# more on this page" , "search.result.term.missing" : "Missing" } , "search" : "../../assets/javascripts/workers/search.d10a1f1d.min.js" , "version" : { "provider" : "mike" } } < / script >
2020-11-09 19:27:07 +01:00
2021-03-29 16:42:05 +02:00
< script src = "../../assets/javascripts/bundle.9aafa2c6.min.js" > < / script >
2020-11-09 19:27:07 +01:00
< script src = "https://polyfill.io/v3/polyfill.min.js?features=es6" > < / script >
< script src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js" > < / script >
< / body >
< / html >