From 8df629b403076c1059d3e59f3fd957dc09dc0ae0 Mon Sep 17 00:00:00 2001 From: JulioV Date: Fri, 12 Mar 2021 17:26:47 -0500 Subject: [PATCH] Update FAQ --- docs/{faq.md => common-errors.md} | 2 +- docs/setup/where-do-i-start.md | 4 ++-- mkdocs.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename docs/{faq.md => common-errors.md} (99%) diff --git a/docs/faq.md b/docs/common-errors.md similarity index 99% rename from docs/faq.md rename to docs/common-errors.md index beb3f858..75773ee5 100644 --- a/docs/faq.md +++ b/docs/common-errors.md @@ -1,4 +1,4 @@ -# Frequently Asked Questions +# Common Errors ## Cannot connect to your MySQL server diff --git a/docs/setup/where-do-i-start.md b/docs/setup/where-do-i-start.md index 0f415691..d366c2fc 100644 --- a/docs/setup/where-do-i-start.md +++ b/docs/setup/where-do-i-start.md @@ -120,5 +120,5 @@ RAPIDS functionality includes: ??? info "I know how to program in Python or R but not both. Can I still use or extend RAPIDS?" Yes, you don't need to write any code to use RAPIDS out of the box. If you need to add support for new [data streams](../../datastreams/add-new-data-streams/) or [behavioral features](../../features/add-new-features/) you can use scripts in either language. -??? info "I have scripts that clean data from X sensor, can I use them with RAPIDS?" - Yes, you can add them as a [`[MUTATION][SCRIPT]`](../../datastreams/add-new-data-streams/#complex-mapping) in the `format.yaml` of the [data stream](../../datastreams/data-streams-introduction/) you are using. You will add a `main` function that will receive a data frame with the raw data for that sensor. +??? info "I have scripts that clean raw data from X sensor, can I use them with RAPIDS?" + Yes, you can add them as a [`[MUTATION][SCRIPT]`](../../datastreams/add-new-data-streams/#complex-mapping) in the `format.yaml` of the [data stream](../../datastreams/data-streams-introduction/) you are using. You will add a `main` function that will receive a data frame with the raw data for that sensor that in turn will be used to compute behavioral features. diff --git a/mkdocs.yml b/mkdocs.yml index 21b9084f..44770866 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -149,6 +149,6 @@ nav: - Others: - Migrating from an old version: migrating-from-old-versions.md - Code of Conduct: code_of_conduct.md - - FAQ: faq.md + - Common Errors: common-errors.md - Team: team.md - Change Log: change-log.md